public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ia64, kexec: shutting down the PCI devices does not seem to be neccessary
@ 2006-06-27  7:16 Horms
  2006-06-27  7:25 ` Horms
  0 siblings, 1 reply; 2+ messages in thread
From: Horms @ 2006-06-27  7:16 UTC (permalink / raw)
  To: linux-ia64

As suggested by Nanhai Zou, it seems that the pci shutdown code in kdump
is not neccessary. I tested the patch on a Tiger2 box, and it seems
to work fine.

Signed-off-by: Horms <horms@verge.net.au>

 arch/ia64/kernel/crash.c |   21 ---------------------
 1 file changed, 21 deletions(-)

db4590a1c287d873fc97d81230579065c4927ac6
diff --git a/arch/ia64/kernel/crash.c b/arch/ia64/kernel/crash.c
index 6623bfc..3f46ee6 100644
--- a/arch/ia64/kernel/crash.c
+++ b/arch/ia64/kernel/crash.c
@@ -22,26 +22,6 @@ #include <linux/elf.h>
 #include <linux/elfcore.h>
 #include <linux/device.h>
 
-static void device_shootdown(void)
-{
-       struct pci_dev *dev;
-       irq_desc_t *desc;
-       u16 pci_command;
-
-       list_for_each_entry(dev, &pci_devices, global_list) {
-               desc = irq_descp(dev->irq);
-               if (!desc->action)
-                       continue;
-               pci_read_config_word(dev, PCI_COMMAND, &pci_command);
-               if (pci_command & PCI_COMMAND_MASTER) {
-                       pci_command &= ~PCI_COMMAND_MASTER;
-                       pci_write_config_word(dev, PCI_COMMAND, pci_command);
-               }
-               disable_irq_nosync(dev->irq);
-               desc->handler->end(dev->irq);
-       }
-}
-
 static Elf64_Word
 *append_elf_note(Elf64_Word *buf, char *name, unsigned type, void *data,
 		size_t data_len)
@@ -123,7 +103,6 @@ machine_crash_shutdown(struct pt_regs *p
 		ia64_eoi();
 	}
 	crash_save_this_cpu();
-	device_shootdown();
 #ifdef CONFIG_SMP
 	smp_send_stop();
 #endif

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] ia64, kexec: shutting down the PCI devices does not seem to be neccessary
  2006-06-27  7:16 [PATCH] ia64, kexec: shutting down the PCI devices does not seem to be neccessary Horms
@ 2006-06-27  7:25 ` Horms
  0 siblings, 0 replies; 2+ messages in thread
From: Horms @ 2006-06-27  7:25 UTC (permalink / raw)
  To: linux-ia64

On Tue, Jun 27, 2006 at 04:16:02PM +0900, Horms wrote:
> As suggested by Nanhai Zou, it seems that the pci shutdown code in kdump
> is not neccessary. I tested the patch on a Tiger2 box, and it seems
> to work fine.

I should point out that this patch (inadvertantly) removes the irq-end
magic that you were doing in order to make the MPT Fusion function after
reboot. However, that device came up just fine with this patch applied.
I wonder if a recent fix to MPT is helping us.

http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h›f0a28c9a24e2cee5deecf89d118254374c75ba

-- 
Horms                                           
H: http://www.vergenet.net/~horms/          W: http://www.valinux.co.jp/en/


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2006-06-27  7:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-06-27  7:16 [PATCH] ia64, kexec: shutting down the PCI devices does not seem to be neccessary Horms
2006-06-27  7:25 ` Horms

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox