1. 12 1月, 2007 5 次提交
  2. 11 1月, 2007 3 次提交
    • V
      [PATCH] x86-64: pci quirks MODPOST warning fix · 9d24a81e
      Vivek Goyal 提交于
      o MODPOST generates warnings for i386 if kernel is compiled with
        CONFIG_RELOCATABLE=y
      
      WARNING: vmlinux - Section mismatch: reference to .init.data: from .text between 'asus_hides_smbus_lpc_ich6' (at offset 0xc0217d58) and 'quirk_cardbus_legacy'
      WARNING: vmlinux - Section mismatch: reference to .init.data: from .text between 'asus_hides_smbus_lpc' (at offset 0xc0217fd9) and 'pci_match_id'
      
      o Two quirk functions which are non __init, are accessing data which is
        of type __init.
      Signed-off-by: NVivek Goyal <vgoyal@in.ibm.com>
      Signed-off-by: NAndi Kleen <ak@suse.de>
      9d24a81e
    • V
      [PATCH] x86-64: modpost add more symbols to whitelist pattern2 · 118c0ace
      Vivek Goyal 提交于
      o MODPOST generates warning for i386 if compiled with CONFIG_RELOCATABLE=y
        and serial console support is enabled.
      
      o Serial console setup function, serial8250_console_setup(), is a non __init
        function and it calls functions which are of type __init().
        (uart_parse_options() and uart_set_options()). Assuming, setup will
        be called during init time, changing serial8250_console_setup() to __init.
      
      o Adding one more pattern to modpost whitelist. Console drivers might
        have *_console structures containing references to setup functions which
        can be of __init type. Don't generate warnings for those.
      
      WARNING: vmlinux - Section mismatch: reference to .init.text: from .data between 'serial8250_console' (at offset 0xc05a33d8) and 'serial8250_reg'
      Signed-off-by: NVivek Goyal <vgoyal@in.ibm.com>
      Signed-off-by: NAndi Kleen <ak@suse.de>
      Cc: "Eric W. Biederman" <ebiederm@xmission.com>
      Cc: Andi Kleen <ak@suse.de>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      118c0ace
    • S
      ieee1394: sbp2: fix probing of some DVD-ROM/RWs · 1a74bc68
      Stefan Richter 提交于
      Since commit 98e238cd in Linux 2.6.19,
      "ieee1394: sbp2: don't prefer MODE SENSE 10", some FireWire DVD-ROMs and
      DVD-RWs were mistaken as CD-ROM because sr_mod now sent MODE SENSE 6.
      The MMC command set includes only MODE SENSE 10.
      http://bugzilla.kernel.org/show_bug.cgi?id=7800
      
      This fix lets sbp2 switch scsi_device.use_10_for_rw on for MMC LUs.
      This should rather be done in the command set driver sr_mod, not in the
      sbp2 transport driver, and an according patch will follow for a next
      Linux release.
      Signed-off-by: NStefan Richter <stefanr@s5r6.in-berlin.de>
      1a74bc68
  3. 10 1月, 2007 3 次提交
  4. 09 1月, 2007 19 次提交
  5. 08 1月, 2007 9 次提交
  6. 07 1月, 2007 1 次提交