1. 15 11月, 2008 1 次提交
  2. 13 11月, 2008 1 次提交
  3. 12 11月, 2008 1 次提交
  4. 07 11月, 2008 2 次提交
    • W
      vt: incomplete initialization of vc_tab_stop · a564738c
      Wolfgang Kroworsch 提交于
      Problem 1 (see patch below):
        vc_tab_stop is declared as an array of 8 unsigned ints in struct
        vc_data in include/linux/console_struct.h .
        In drivers/char/vt.c only 5 of these 8 unsigned ints get initialized
        leading to unintended tabulator placement on displays with more than
        160 columns text.
      
      Problem 2 (open):
        Upcoming displays will have more than 256 columns of text leading to
        invalid memory access in drivers/char/vt.c during tabulator
        calculations:
          if (vc->vc_tab_stop[vc->vc_x >> 5] & (1 << (vc->vc_x & 31)))
      	break;
      Signed-off-by: NWolfgang Kroworsch <wolfgang@kroworsch.de>
      Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
      Cc: Christoph Hellwig <hch@lst.de>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      a564738c
    • B
      ACPI: remove CONFIG_ACPI_EC · 8950d89a
      Bjorn Helgaas 提交于
      Remove CONFIG_ACPI_EC.  It was always set the same as CONFIG_ACPI,
      and it had no menu label, so there was no way to set it to anything
      other than "y".
      
      Per section 6.5.4 of the ACPI 3.0b specification,
      
          OSPM must make Embedded Controller operation regions, accessed
          via the Embedded Controllers described in ECDT, available before
          executing any control method.
      
      The ECDT table is optional, but if it is present, the above text
      means that the EC it describes is a required part of the ACPI
      subsystem, so CONFIG_ACPI_EC=n wouldn't make sense.
      Signed-off-by: NBjorn Helgaas <bjorn.helgaas@hp.com>
      Acked-by: NAlexey Starikovskiy <astarikovskiy@suse.de>
      Signed-off-by: NLen Brown <len.brown@intel.com>
      8950d89a
  5. 02 11月, 2008 1 次提交
    • A
      saner FASYNC handling on file close · 233e70f4
      Al Viro 提交于
      As it is, all instances of ->release() for files that have ->fasync()
      need to remember to evict file from fasync lists; forgetting that
      creates a hole and we actually have a bunch that *does* forget.
      
      So let's keep our lives simple - let __fput() check FASYNC in
      file->f_flags and call ->fasync() there if it's been set.  And lose that
      crap in ->release() instances - leaving it there is still valid, but we
      don't have to bother anymore.
      Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      233e70f4
  6. 31 10月, 2008 1 次提交
  7. 30 10月, 2008 2 次提交
  8. 27 10月, 2008 2 次提交
  9. 24 10月, 2008 1 次提交
  10. 22 10月, 2008 5 次提交
  11. 21 10月, 2008 6 次提交
  12. 20 10月, 2008 7 次提交
  13. 18 10月, 2008 1 次提交
  14. 17 10月, 2008 9 次提交