1. 09 5月, 2007 1 次提交
  2. 03 5月, 2007 1 次提交
  3. 15 2月, 2007 1 次提交
    • T
      [PATCH] remove many unneeded #includes of sched.h · cd354f1a
      Tim Schmielau 提交于
      After Al Viro (finally) succeeded in removing the sched.h #include in module.h
      recently, it makes sense again to remove other superfluous sched.h includes.
      There are quite a lot of files which include it but don't actually need
      anything defined in there.  Presumably these includes were once needed for
      macros that used to live in sched.h, but moved to other header files in the
      course of cleaning it up.
      
      To ease the pain, this time I did not fiddle with any header files and only
      removed #includes from .c-files, which tend to cause less trouble.
      
      Compile tested against 2.6.20-rc2 and 2.6.20-rc2-mm2 (with offsets) on alpha,
      arm, i386, ia64, mips, powerpc, and x86_64 with allnoconfig, defconfig,
      allmodconfig, and allyesconfig as well as a few randconfigs on x86_64 and all
      configs in arch/arm/configs on arm.  I also checked that no new warnings were
      introduced by the patch (actually, some warnings are removed that were emitted
      by unnecessarily included header files).
      Signed-off-by: NTim Schmielau <tim@physik3.uni-rostock.de>
      Acked-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      cd354f1a
  4. 09 12月, 2006 1 次提交
  5. 11 7月, 2006 2 次提交
  6. 01 7月, 2006 1 次提交
  7. 28 6月, 2006 1 次提交
  8. 27 6月, 2006 1 次提交
    • A
      [PATCH] Detaching fbcon: fix vgacon to allow retaking of the console · 50ec42ed
      Antonino A. Daplas 提交于
      One of the limitations of the framebuffer console system is its inablity to
      unload or detach itself from the console layer.  And once it loads, it also
      locks in framebuffer drivers preventing their unload. Although the con2fbmap
      utility does provide a means to unload individual drivers, it requires that at
      least one framebuffer driver is loaded for use by fbcon.
      
      With this change, it is possible to detach fbcon from the console layer. If it
      is detached, it will reattach the boot console driver (which is permanently
      loaded) back to the console layer so the system can continue to work.  As a
      consequence, fbcon will also decrement its reference count of individual
      framebuffer drivers, allowing all of these drivers to be unloaded even if
      fbcon is still loaded.
      
      Unless you use drivers that restores the display to text mode (rivafb and
      i810fb, for example), detaching fbcon does require assistance from userspace
      tools (ie, vbetools) for text mode to be restored completely.  Without the
      help of these tools, fbcon will leave the VGA console corrupted. The methods
      that can be used will be described in Documentation/fb/fbcon.txt.
      
      Because the vt layer also increments the module reference count for each
      console driver, fbcon cannot be directly unloaded.  It must be detached first
      prior to unload.
      
      Similarly, fbcon can be reattached to the console layer without having to
      reload the module.  A nice feature if fbcon is compiled statically.
      
      Attaching and detaching fbcon is done via sysfs attributes. A class device
      entry for fbcon is created in /sys/class/graphics. The two attributes that
      controls this feature are detach and attach. Two other attributes that are
      piggybacked under /sys/class/graphics/fb[n] that are fbcon-specific,
      'con_rotate' and 'con_rotate_all' are moved to fbcon.  They are renamed as
      'rotate' and 'rotate_all' respectively.
      
      Overall, this feature is a great help for developers working in the
      framebuffer or console layer.  There is not need to continually reboot the
      kernel for every small change. It is also useful for regular users who wants
      to choose between a graphical console or a text console without having to
      reboot.
      
      Example usage for x86:
      
      /* start in text mode */
      modprobe xxxfb
      modprobe fbcon
      /* graphical mode with fbcon using xxxfb */
      echo 1 > /sys/class/graphics/fbcon/detach
      /* back to text mode, will produce corrupt display unless vbetool is used */
      rmmod xxxfb
      modprobe yyyfb
      /* back to graphical mode with fbcon using yyyfb */
      
      Before trying out this feature, please read Documentation/fb/fbcon.txt.
      
      This patch:
      
      In order for fbcon to detach itself from the console layer, vgacon, which is a
      boot console driver, must be fixed so it can retake the console multiple
      times, not just during init.  The following needs to be done:
      
      - remove __init from the vgacon_startup, this is called again by
        take_over_console().
      
      - vc->rows and vc->cols are set manually by vgacon during init. After init,
        vc_resize() can be used
      
      - make sure the scrollback_buffer is not reallocated
      Signed-off-by: NAntonino Daplas <adaplas@pol.net>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      50ec42ed
  9. 23 6月, 2006 1 次提交
    • B
      [PATCH] vgacon: make VGA_MAP_MEM take size, remove extra use · 4f1bcaf0
      Bjorn Helgaas 提交于
      VGA_MAP_MEM translates to ioremap() on some architectures.  It makes sense
      to do this to vga_vram_base, because we're going to access memory between
      vga_vram_base and vga_vram_end.
      
      But it doesn't really make sense to map starting at vga_vram_end, because
      we aren't going to access memory starting there.  On ia64, which always has
      to be different, ioremapping vga_vram_end gives you something completely
      incompatible with ioremapped vga_vram_start, so vga_vram_size ends up being
      nonsense.
      
      As a bonus, we often know the size up front, so we can use ioremap()
      correctly, rather than giving it a zero size.
      Signed-off-by: NBjorn Helgaas <bjorn.helgaas@hp.com>
      Cc: "Antonino A. Daplas" <adaplas@pol.net>
      Cc: "Luck, Tony" <tony.luck@intel.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      4f1bcaf0
  10. 28 3月, 2006 2 次提交
  11. 25 2月, 2006 1 次提交
  12. 09 1月, 2006 2 次提交
  13. 23 11月, 2005 1 次提交
    • A
      [PATCH] vgacon: Fix usage of stale height value on vc initialization · 5ef897c7
      Antonino A. Daplas 提交于
      Reported by: Wayne E. Harlan
      
      "[1.] One line summary of the problem:
      When the kernel option "vga=1" is used, additional tty's (alt+control+Fx
      with x=2,3,4,5, etc) do not provide the full 50 lines of output.  The first
      one does have 50 lines, however.
      
      [2.] Full description of the problem/report:
      These addtitional tty's show only 39 lines plus the top pixel of the 40-th
      line.  The remaining lines are black and not shown.  Kernel version
      2.6.13.4 does not show this problem."
      
      This bug is caused by using a stale font height value on vgacon_init.
      
      Booting with vga=1 gives an 80x50 screen with an 8x8 font.  Somewhere
      during the initialization, the font was changed to 8x9 and the first
      vc was correctly resized to 80x44.  However, the rest of the vc's were
      not allocated yet, and when they were subsequently initialized, they
      still used a font height of 8 (instead of 9) causing the mentioned bug.
      
      Fix by saving the new font height to vga_video_font_height.
      Signed-off-by: NAntonino Daplas <adaplas@pol.net>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      5ef897c7
  14. 06 11月, 2005 1 次提交
    • S
      [PATCH] Set the vga cursor even when hidden · 88dcb6c4
      Samuel Thibault 提交于
      Some visually impaired people use hardware devices which directly read
      the vga screen. When newt for instance asks to hide the cursor for
      better visual aspect, the kernel puts the vga cursor out of the screen,
      so that the cursor position can't be read by the hardware device. This
      is a great loss for such people.
      
      Here is a patch which uses the same technique as CUR_NONE for hiding the
      cursor while still moving it.
      
      Mario, you should apply it to the speakup kernel for access floppies
      asap. I'll submit a 2.4 patch too.
      
      Signed-off-by: samuel.thibault@ens-lyon.org
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      88dcb6c4
  15. 31 10月, 2005 1 次提交
    • P
      [PATCH] fix vgacon blanking · 1a66ddcb
      Pozsar Balazs 提交于
      This patch fixes a long-standing vgacon bug: characters with the bright bit
      set were left on the screen and not blacked out.  All I did was that I
      lookuped up some examples on the net about setting the vga palette, and
      added the call missing from the linux kernel, but included in all other
      ones.  It works for me.
      
      You can test this by writing something with the bright set to the
      console, for example:
        echo -e "\e[1;31mhello there\e[0m"
      and then wait for the console to blank itself (by default, after 10 mins
      of inactivity), maybe making it faster using
        setterm -blank 1
      so you only have to wait 1 minute.
      Signed-off-by: NPozsar Balazs <pozsy@uhulinux.hu>
      Cc: James Simmons <jsimmons@infradead.org>
      Cc: "Antonino A. Daplas" <adaplas@pol.net>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      1a66ddcb
  16. 17 10月, 2005 1 次提交
    • S
      [PATCH] SVGATextMode fix · 0aec4867
      Samuel Thibault 提交于
      Fix bug 5441.
      
      I didn't know about messy programs like svgatextmode...  Couldn't this be
      integrated in some linux/drivers/video/console/svgacon.c ?...  So because
      of the existence of the svgatextmode program, the kernel is not supposed to
      touch to CRT_OVERFLOW/SYNC_END/DISP/DISP_END/OFFSET ?
      
      Disabling the check in vgacon_resize() might help indeed, but I'm really
      not sure whether it will work for any chipset: in my patch, CRT registers
      are set at each console switch, since stty rows/cols apply to consoles
      separately...
      
      The attached solution is to keep the test, but if it fails, we assume that
      the caller knows what it does (i.e.  it is svgatextmode) and then disable
      any further call to vgacon_doresize.  Svgatextmode is usually used to
      _expand_ the display, not to shrink it.  And it is harmless in the case of
      a too big stty rows/cols: the display will just be cropped.  I tested it on
      my laptop, and it works fine with svgatextmode.
      
      A better solution would be that svgatextmode explicitely tells the kernel
      not to care about video timing, but for this an interface needs be defined
      and svgatextmode be patched.
      Signed-off-by: NSamuel Thibault <samuel.thibault@ens-lyon.org>
      Cc: "Antonino A. Daplas" <adaplas@pol.net>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      0aec4867
  17. 15 9月, 2005 1 次提交
    • A
      [PATCH] vgacon: Fix sanity checking in vgacon_resize · 6d36ba62
      Antonino A. Daplas 提交于
      Reported by: walt <wa1ter@myrealbox.com>
      
      "I routinely switch the console font during bootup to
      8x8 so I can get 50 lines per screen.  Until 09 Sept,
      just changing to the small font automatically gave me
      all 50 lines -- but now I'm only getting 25 lines even
      with the small font.  The bottom half of the screen
      displays the text that already scrolled off the top."
      
      This bug is due to an erroneous check in the recently added hook,
      vgacon_resize(). It checks the new height against the original number of
      rows of the console. Because the original number of rows depends on both
      the scanline and the font height, check it instead against the
      scanline/fontheight.
      Signed-off-by: NAntonino Daplas <adaplas@pol.net>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      6d36ba62
  18. 10 9月, 2005 1 次提交
  19. 22 6月, 2005 1 次提交
    • J
      [PATCH] VGA to fbcon fix. · f18cd8f7
      James Simmons 提交于
      Currently when going from vgacon to fbcon the VT screenbuffer are often
      different sizes.  In the case when they are different sizes a new VT
      screenbuffer is allocated and the contents are copied into the new buffer.
      
      Currently the amount copied from VGA text memory to the new screenbuf is
      the size of the framebuffer console.  If the framebuffer console new VT
      screen buffer is greater than the VGA text memory size then we get some of
      the VGA BIOS contents as well.
      
      This patch will only allow you to copy up to the size of VGA text memory
      now.  The rest is filled with erase characters.
      
      Initial patch by Jordan Crouse <jordan.crouse@amd.com>
      Signed-off-by: NJames Simmons <jsimmons@www.infradead.org>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      f18cd8f7
  20. 01 5月, 2005 1 次提交
    • B
      [PATCH] vgacon: set vc_hi_font_mask correctly · a40920b4
      Bill Nottingham 提交于
      When allocating a new VC with vgacon_init(), the font is shared across all
      the VGA consoles.  However, the font mask was always set to the default
      value of zero in visual_init(), even if we were using 512 character fonts
      at the time.
      
      Moreover, code in vgacon.c:vga_do_font_op() didn't reset the mask if the
      console driver thinks it's already in 512 character mode.  This means that
      to *fix* it, you'd actually have to take the console out of 512 character
      mode and then set it back.
      
      The attached sets vc_hi_font_mask in vgacon_init() for any new consoles
      opened if the vgacon driver is already in 512 character mode, solving this.
      
      This bug goes back to 2.4.18 at least, probably earlier.
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      a40920b4
  21. 17 4月, 2005 1 次提交
    • L
      Linux-2.6.12-rc2 · 1da177e4
      Linus Torvalds 提交于
      Initial git repository build. I'm not bothering with the full history,
      even though we have it. We can create a separate "historical" git
      archive of that later if we want to, and in the meantime it's about
      3.2GB when imported into git - space that would just make the early
      git days unnecessarily complicated, when we don't have a lot of good
      infrastructure for it.
      
      Let it rip!
      1da177e4