diff options
author | Vivek Goyal <vgoyal@in.ibm.com> | 2005-06-25 17:58:19 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-25 19:24:53 -0400 |
commit | 60e64d46a58236e3c718074372cab6a5b56a3b15 (patch) | |
tree | 194e5fa7a53a1ac4a106b1527ec69cf3c2179bb0 /include/linux/crash_dump.h | |
parent | 5f016456c96868c27df248a54d1cc919e7b70a23 (diff) |
[PATCH] kdump: Routines for copying dump pages
This patch provides the interfaces necessary to read the dump contents,
treating it as a high memory device.
Signed off by Hariprasad Nellitheertha <hari@in.ibm.com>
Signed-off-by: Eric Biederman <ebiederm@xmission.com>
Signed-off-by: Vivek Goyal <vgoyal@in.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/crash_dump.h')
-rw-r--r-- | include/linux/crash_dump.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/linux/crash_dump.h b/include/linux/crash_dump.h new file mode 100644 index 000000000000..7d983b817429 --- /dev/null +++ b/include/linux/crash_dump.h | |||
@@ -0,0 +1,13 @@ | |||
1 | #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 | |||
10 | extern ssize_t copy_oldmem_page(unsigned long, char *, size_t, | ||
11 | unsigned long, int); | ||
12 | #endif /* CONFIG_CRASH_DUMP */ | ||
13 | #endif /* LINUX_CRASHDUMP_H */ | ||