1 #include <linux/kernel.h>
3 #include <linux/reboot.h>
4 #include <linux/kexec.h>
5 #include <linux/bootmem.h>
6 #include <linux/crash_dump.h>
7 #include <linux/delay.h>
8 #include <linux/init.h>
10 #include <linux/types.h>
11 #include <linux/sched.h>
13 /* This keeps a track of which one is crashing cpu. */
14 static int crashing_cpu
= -1;
15 static cpumask_t cpus_in_crash
= CPU_MASK_NONE
;
18 static void crash_shutdown_secondary(void *ignore
)
21 int cpu
= smp_processor_id();
23 regs
= task_pt_regs(current
);
29 if (!cpu_isset(cpu
, cpus_in_crash
))
30 crash_save_cpu(regs
, cpu
);
31 cpu_set(cpu
, cpus_in_crash
);
33 while (!atomic_read(&kexec_ready_to_reboot
))
35 relocated_kexec_smp_wait(NULL
);
39 static void crash_kexec_prepare_cpus(void)
43 unsigned int ncpus
= num_online_cpus() - 1;/* Excluding the panic cpu */
45 dump_send_ipi(crash_shutdown_secondary
);
49 * The crash CPU sends an IPI and wait for other CPUs to
50 * respond. Delay of at least 10 seconds.
52 pr_emerg("Sending IPI to other cpus...\n");
54 while ((cpus_weight(cpus_in_crash
) < ncpus
) && (--msecs
> 0)) {
60 #else /* !defined(CONFIG_SMP) */
61 static void crash_kexec_prepare_cpus(void) {}
62 #endif /* !defined(CONFIG_SMP) */
64 void default_machine_crash_shutdown(struct pt_regs
*regs
)
67 crashing_cpu
= smp_processor_id();
68 crash_save_cpu(regs
, crashing_cpu
);
69 crash_kexec_prepare_cpus();
70 cpu_set(crashing_cpu
, cpus_in_crash
);