crash.c (bc95f3669f5e6f63cf0b84fe4922c3c6dd4aa775) | crash.c (1eeb66a1bb973534dc3d064920a5ca683823372e) |
---|---|
1/* 2 * arch/ia64/kernel/crash.c 3 * 4 * Architecture specific (ia64) functions for kexec based crash dumps. 5 * 6 * Created by: Khalid Aziz <khalid.aziz@hp.com> 7 * Copyright (C) 2005 Hewlett-Packard Development Company, L.P. 8 * Copyright (C) 2005 Intel Corp Zou Nan hai <nanhai.zou@intel.com> 9 * 10 */ 11#include <linux/smp.h> 12#include <linux/delay.h> 13#include <linux/crash_dump.h> 14#include <linux/bootmem.h> 15#include <linux/kexec.h> 16#include <linux/elfcore.h> 17#include <linux/sysctl.h> 18#include <linux/init.h> | 1/* 2 * arch/ia64/kernel/crash.c 3 * 4 * Architecture specific (ia64) functions for kexec based crash dumps. 5 * 6 * Created by: Khalid Aziz <khalid.aziz@hp.com> 7 * Copyright (C) 2005 Hewlett-Packard Development Company, L.P. 8 * Copyright (C) 2005 Intel Corp Zou Nan hai <nanhai.zou@intel.com> 9 * 10 */ 11#include <linux/smp.h> 12#include <linux/delay.h> 13#include <linux/crash_dump.h> 14#include <linux/bootmem.h> 15#include <linux/kexec.h> 16#include <linux/elfcore.h> 17#include <linux/sysctl.h> 18#include <linux/init.h> |
19#include <linux/kdebug.h> |
|
19 | 20 |
20#include <asm/kdebug.h> | |
21#include <asm/mca.h> 22 23int kdump_status[NR_CPUS]; 24static atomic_t kdump_cpu_frozen; 25atomic_t kdump_in_progress; 26static int kdump_on_init = 1; 27 28static inline Elf64_Word --- 203 unchanged lines hidden --- | 21#include <asm/mca.h> 22 23int kdump_status[NR_CPUS]; 24static atomic_t kdump_cpu_frozen; 25atomic_t kdump_in_progress; 26static int kdump_on_init = 1; 27 28static inline Elf64_Word --- 203 unchanged lines hidden --- |