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 /kernel/crash_dump.c | |
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 'kernel/crash_dump.c')
-rw-r--r-- | kernel/crash_dump.c | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/kernel/crash_dump.c b/kernel/crash_dump.c new file mode 100644 index 000000000000..5a1e6d5d203e --- /dev/null +++ b/kernel/crash_dump.c | |||
@@ -0,0 +1,49 @@ | |||
1 | /* | ||
2 | * kernel/crash_dump.c - Memory preserving reboot related code. | ||
3 | * | ||
4 | * Created by: Hariprasad Nellitheertha (hari@in.ibm.com) | ||
5 | * Copyright (C) IBM Corporation, 2004. All rights reserved | ||
6 | */ | ||
7 | |||
8 | #include <linux/smp_lock.h> | ||
9 | #include <linux/errno.h> | ||
10 | #include <linux/proc_fs.h> | ||
11 | #include <linux/bootmem.h> | ||
12 | #include <linux/highmem.h> | ||
13 | #include <linux/crash_dump.h> | ||
14 | |||
15 | #include <asm/io.h> | ||
16 | #include <asm/uaccess.h> | ||
17 | |||
18 | /* | ||
19 | * Copy a page from "oldmem". For this page, there is no pte mapped | ||
20 | * in the current kernel. We stitch up a pte, similar to kmap_atomic. | ||
21 | */ | ||
22 | ssize_t copy_oldmem_page(unsigned long pfn, char *buf, | ||
23 | size_t csize, unsigned long offset, int userbuf) | ||
24 | { | ||
25 | void *page, *vaddr; | ||
26 | |||
27 | if (!csize) | ||
28 | return 0; | ||
29 | |||
30 | page = kmalloc(PAGE_SIZE, GFP_KERNEL); | ||
31 | if (!page) | ||
32 | return -ENOMEM; | ||
33 | |||
34 | vaddr = kmap_atomic_pfn(pfn, KM_PTE0); | ||
35 | copy_page(page, vaddr); | ||
36 | kunmap_atomic(vaddr, KM_PTE0); | ||
37 | |||
38 | if (userbuf) { | ||
39 | if (copy_to_user(buf, (page + offset), csize)) { | ||
40 | kfree(page); | ||
41 | return -EFAULT; | ||
42 | } | ||
43 | } else { | ||
44 | memcpy(buf, (page + offset), csize); | ||
45 | } | ||
46 | |||
47 | kfree(page); | ||
48 | return csize; | ||
49 | } | ||