2005-06-26 04:58:19 +07:00
|
|
|
#ifndef LINUX_CRASH_DUMP_H
|
|
|
|
#define LINUX_CRASH_DUMP_H
|
|
|
|
|
|
|
|
#ifdef CONFIG_CRASH_DUMP
|
|
|
|
#include <linux/kexec.h>
|
|
|
|
#include <linux/smp_lock.h>
|
|
|
|
#include <linux/device.h>
|
|
|
|
#include <linux/proc_fs.h>
|
|
|
|
|
2005-06-26 04:58:21 +07:00
|
|
|
#define ELFCORE_ADDR_MAX (-1ULL)
|
2008-07-26 16:22:33 +07:00
|
|
|
|
2005-06-26 04:58:20 +07:00
|
|
|
extern unsigned long long elfcorehdr_addr;
|
2008-07-26 16:22:33 +07:00
|
|
|
|
2005-06-26 04:58:19 +07:00
|
|
|
extern ssize_t copy_oldmem_page(unsigned long, char *, size_t,
|
|
|
|
unsigned long, int);
|
2006-03-28 16:56:42 +07:00
|
|
|
extern const struct file_operations proc_vmcore_operations;
|
2005-06-26 04:58:21 +07:00
|
|
|
extern struct proc_dir_entry *proc_vmcore;
|
|
|
|
|
2007-05-03 00:27:09 +07:00
|
|
|
/* Architecture code defines this if there are other possible ELF
|
|
|
|
* machine types, e.g. on bi-arch capable hardware. */
|
|
|
|
#ifndef vmcore_elf_check_arch_cross
|
|
|
|
#define vmcore_elf_check_arch_cross(x) 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define vmcore_elf_check_arch(x) (elf_check_arch(x) || vmcore_elf_check_arch_cross(x))
|
|
|
|
|
2008-10-19 10:28:25 +07:00
|
|
|
/*
|
|
|
|
* is_kdump_kernel() checks whether this kernel is booting after a panic of
|
|
|
|
* previous kernel or not. This is determined by checking if previous kernel
|
|
|
|
* has passed the elf core header address on command line.
|
|
|
|
*
|
|
|
|
* This is not just a test if CONFIG_CRASH_DUMP is enabled or not. It will
|
|
|
|
* return 1 if CONFIG_CRASH_DUMP=y and if kernel is booting after a panic of
|
|
|
|
* previous kernel.
|
|
|
|
*/
|
|
|
|
|
2008-07-25 15:47:55 +07:00
|
|
|
static inline int is_kdump_kernel(void)
|
|
|
|
{
|
|
|
|
return (elfcorehdr_addr != ELFCORE_ADDR_MAX) ? 1 : 0;
|
|
|
|
}
|
|
|
|
#else /* !CONFIG_CRASH_DUMP */
|
|
|
|
static inline int is_kdump_kernel(void) { return 0; }
|
2005-06-26 04:58:19 +07:00
|
|
|
#endif /* CONFIG_CRASH_DUMP */
|
2008-07-25 15:47:55 +07:00
|
|
|
|
|
|
|
extern unsigned long saved_max_pfn;
|
2005-06-26 04:58:19 +07:00
|
|
|
#endif /* LINUX_CRASHDUMP_H */
|