1. 16 5月, 2007 1 次提交
  2. 12 5月, 2007 2 次提交
    • D
      Fix assertion failure with MSI on sparc64 · b3b7cc7b
      David Miller 提交于
      Today's find is a triggered assertion in msi_free_irqs() when the system
      doesn't support MSI, in which case arch_setup_msi_irqs() always returns
      an error.
      
      The problem is that when this happens we branch into msi_free_irqs(), to
      which you added the following assertion loop:
      
      	list_for_each_entry(entry, &dev->msi_list, list)
      		BUG_ON(irq_has_action(entry->irq));
      
      Well, if arch_setup_msi_irqs() fails, entry->irq will be zero and
      although that's never assigned to any normal devices we use that IRQ
      number for the timer interrupt on sparc64 so this assertion triggers.
      
      Better to test for zero before doing the irq_has_action() assertion
      thing.
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      b3b7cc7b
    • H
      Add the combined mode for ATI SB700 · 82377718
      Henry Su 提交于
      Besides those modes in ATI SB600 SATA controller, ATI SB700 supports one
      more mode:the combined mode.
      
      The combined mode is a Legacy IDE mode used for compatibility with some old
      OS without AHCI driver, but now it is not necessary for Linux since the
      kernel has supported AHCI.
      Signed-off-by: NLuugi Marsan <luugi.marsan@amd.com>
      Cc: Jeff Garzik <jeff@garzik.org>
      Cc: Tejun Heo <htejun@gmail.com>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NJeff Garzik <jeff@garzik.org>
      82377718
  3. 11 5月, 2007 1 次提交
  4. 09 5月, 2007 2 次提交
  5. 03 5月, 2007 34 次提交