blob: 22c7ac5cd80cbd18ec3aeb1da42cac0493af8078 [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)
Vivek Goyal2030eae2005-06-25 14:58:20 -070011extern unsigned long long elfcorehdr_addr;
Vivek Goyal60e64d42005-06-25 14:58:19 -070012extern ssize_t copy_oldmem_page(unsigned long, char *, size_t,
13 unsigned long, int);
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080014extern const struct file_operations proc_vmcore_operations;
Vivek Goyal666bfdd2005-06-25 14:58:21 -070015extern struct proc_dir_entry *proc_vmcore;
16
Ian Campbell79e03012007-05-02 19:27:09 +020017/* Architecture code defines this if there are other possible ELF
18 * machine types, e.g. on bi-arch capable hardware. */
19#ifndef vmcore_elf_check_arch_cross
20#define vmcore_elf_check_arch_cross(x) 0
21#endif
22
23#define vmcore_elf_check_arch(x) (elf_check_arch(x) || vmcore_elf_check_arch_cross(x))
24
Vivek Goyal60e64d42005-06-25 14:58:19 -070025#endif /* CONFIG_CRASH_DUMP */
26#endif /* LINUX_CRASHDUMP_H */