public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH]send slave cpus to SAL slave loop on crash (IA64)
@ 2006-10-30 20:36 Jay Lan
  2006-10-31  2:02 ` Zou, Nanhai
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: Jay Lan @ 2006-10-30 20:36 UTC (permalink / raw)
  To: linux-ia64

[-- Attachment #1: Type: text/plain, Size: 319 bytes --]

This patch is to fix a problem of interrupts being sent to cpus
that can not respond.

This patch would return slave cpus to SAL slave loop, at time of
crash, except cpu0. The cpu0 is a special case as there is no way
to return it to SAL, so cpu0 is better handled in firmware.

Signed-off-by: Jay Lan <jlan@sgi.com>



[-- Attachment #2: send-cpus-to-slave-loop --]
[-- Type: text/plain, Size: 898 bytes --]

Index: linux/arch/ia64/kernel/crash.c
===================================================================
--- linux.orig/arch/ia64/kernel/crash.c	2006-10-17 17:09:45.662734380 -0700
+++ linux/arch/ia64/kernel/crash.c	2006-10-30 12:27:12.080526026 -0800
@@ -146,14 +146,21 @@ machine_kdump_on_init(void)
 void
 kdump_cpu_freeze(struct unw_frame_info *info, void *arg)
 {
+	int cpuid = smp_processor_id();
+
 	local_irq_disable();
 	crash_save_this_cpu();
 	current->thread.ksp = (__u64)info->sw - 16;
 	atomic_inc(&kdump_cpu_freezed);
-	kdump_status[smp_processor_id()] = 1;
+	kdump_status[cpuid] = 1;
 	mb();
-	for (;;)
-		cpu_relax();
+        /* return cpus (except cpu0) to SAL slave loop */
+        if (cpuid == 0) {
+                for (;;)
+                        cpu_relax();
+        } else {
+                ia64_jump_to_sal(&sal_boot_rendez_state[cpuid]);
+        }
 }
 
 static int

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

end of thread, other threads:[~2006-11-20 23:33 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-30 20:36 [PATCH]send slave cpus to SAL slave loop on crash (IA64) Jay Lan
2006-10-31  2:02 ` Zou, Nanhai
2006-10-31  4:33 ` Zou, Nanhai
2006-10-31  8:59 ` Jay Lan
2006-10-31  9:11 ` Zou, Nanhai
2006-10-31 18:08 ` Jay Lan
2006-11-03 17:42 ` Jay Lan
2006-11-08  2:01 ` Zou, Nanhai
2006-11-10 19:23 ` Jay Lan
2006-11-14  1:25 ` Zou, Nanhai
2006-11-20 23:13 ` Zou Nan hai
2006-11-20 23:33 ` Jay Lan

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