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 | |
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')
-rw-r--r-- | include/linux/crash_dump.h | 13 | ||||
-rw-r--r-- | include/linux/highmem.h | 1 |
2 files changed, 14 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 */ | ||
diff --git a/include/linux/highmem.h b/include/linux/highmem.h index 2a7e6c65c882..6bece9280eb7 100644 --- a/include/linux/highmem.h +++ b/include/linux/highmem.h | |||
@@ -28,6 +28,7 @@ static inline void *kmap(struct page *page) | |||
28 | 28 | ||
29 | #define kmap_atomic(page, idx) page_address(page) | 29 | #define kmap_atomic(page, idx) page_address(page) |
30 | #define kunmap_atomic(addr, idx) do { } while (0) | 30 | #define kunmap_atomic(addr, idx) do { } while (0) |
31 | #define kmap_atomic_pfn(pfn, idx) page_address(pfn_to_page(pfn)) | ||
31 | #define kmap_atomic_to_page(ptr) virt_to_page(ptr) | 32 | #define kmap_atomic_to_page(ptr) virt_to_page(ptr) |
32 | 33 | ||
33 | #endif /* CONFIG_HIGHMEM */ | 34 | #endif /* CONFIG_HIGHMEM */ |