blob: de027d1db74543444981ebaf567af219abb88f16 [file] [log] [blame]
Vivek Goyal60e64d42005-06-25 14:58:19 -07001#ifndef LINUX_CRASH_DUMP_H
2#define LINUX_CRASH_DUMP_H
3
4#ifdef CONFIG_CRASH_DUMP
5#include <linux/kexec.h>
6#include <linux/smp_lock.h>
7#include <linux/device.h>
8#include <linux/proc_fs.h>
9
Vivek Goyal666bfdd2005-06-25 14:58:21 -070010#define ELFCORE_ADDR_MAX (-1ULL)
Ingo Molnar36ac2612008-07-26 11:22:33 +020011
Vivek Goyal2030eae2005-06-25 14:58:20 -070012extern unsigned long long elfcorehdr_addr;
Ingo Molnar36ac2612008-07-26 11:22:33 +020013
Vivek Goyal60e64d42005-06-25 14:58:19 -070014extern ssize_t copy_oldmem_page(unsigned long, char *, size_t,
15 unsigned long, int);
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080016extern const struct file_operations proc_vmcore_operations;
Vivek Goyal666bfdd2005-06-25 14:58:21 -070017extern struct proc_dir_entry *proc_vmcore;
18
Ian Campbell79e03012007-05-02 19:27:09 +020019/* Architecture code defines this if there are other possible ELF
20 * machine types, e.g. on bi-arch capable hardware. */
21#ifndef vmcore_elf_check_arch_cross
22#define vmcore_elf_check_arch_cross(x) 0
23#endif
24
25#define vmcore_elf_check_arch(x) (elf_check_arch(x) || vmcore_elf_check_arch_cross(x))
26
Vivek Goyal57cac4d2008-10-18 20:28:25 -070027/*
28 * is_kdump_kernel() checks whether this kernel is booting after a panic of
29 * previous kernel or not. This is determined by checking if previous kernel
30 * has passed the elf core header address on command line.
31 *
32 * This is not just a test if CONFIG_CRASH_DUMP is enabled or not. It will
33 * return 1 if CONFIG_CRASH_DUMP=y and if kernel is booting after a panic of
34 * previous kernel.
35 */
36
Chandru95b68de2008-07-25 01:47:55 -070037static inline int is_kdump_kernel(void)
38{
39 return (elfcorehdr_addr != ELFCORE_ADDR_MAX) ? 1 : 0;
40}
41#else /* !CONFIG_CRASH_DUMP */
42static inline int is_kdump_kernel(void) { return 0; }
Vivek Goyal60e64d42005-06-25 14:58:19 -070043#endif /* CONFIG_CRASH_DUMP */
Chandru95b68de2008-07-25 01:47:55 -070044
45extern unsigned long saved_max_pfn;
Vivek Goyal60e64d42005-06-25 14:58:19 -070046#endif /* LINUX_CRASHDUMP_H */