diff options
| author | Anton Altaparmakov <aia21@cantab.net> | 2005-06-26 17:19:40 -0400 |
|---|---|---|
| committer | Anton Altaparmakov <aia21@cantab.net> | 2005-06-26 17:19:40 -0400 |
| commit | 2a322e4c08be4e7cb0c04b427ddaaa679fd88863 (patch) | |
| tree | ad8cc17bfd3b5e57e36f07a249028667d72f0b96 /kernel/crash_dump.c | |
| parent | ba6d2377c85c9b8a793f455d8c9b6cf31985d70f (diff) | |
| parent | 8678887e7fb43cd6c9be6c9807b05e77848e0920 (diff) | |
Automatic merge with /usr/src/ntfs-2.6.git.
Diffstat (limited to 'kernel/crash_dump.c')
| -rw-r--r-- | kernel/crash_dump.c | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/kernel/crash_dump.c b/kernel/crash_dump.c new file mode 100644 index 000000000000..459ba49e376a --- /dev/null +++ b/kernel/crash_dump.c | |||
| @@ -0,0 +1,52 @@ | |||
| 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 | /* Stores the physical address of elf header of crash image. */ | ||
| 19 | unsigned long long elfcorehdr_addr = ELFCORE_ADDR_MAX; | ||
| 20 | |||
| 21 | /* | ||
| 22 | * Copy a page from "oldmem". For this page, there is no pte mapped | ||
| 23 | * in the current kernel. We stitch up a pte, similar to kmap_atomic. | ||
| 24 | */ | ||
| 25 | ssize_t copy_oldmem_page(unsigned long pfn, char *buf, | ||
| 26 | size_t csize, unsigned long offset, int userbuf) | ||
| 27 | { | ||
| 28 | void *page, *vaddr; | ||
| 29 | |||
| 30 | if (!csize) | ||
| 31 | return 0; | ||
| 32 | |||
| 33 | page = kmalloc(PAGE_SIZE, GFP_KERNEL); | ||
| 34 | if (!page) | ||
| 35 | return -ENOMEM; | ||
| 36 | |||
| 37 | vaddr = kmap_atomic_pfn(pfn, KM_PTE0); | ||
| 38 | copy_page(page, vaddr); | ||
| 39 | kunmap_atomic(vaddr, KM_PTE0); | ||
| 40 | |||
| 41 | if (userbuf) { | ||
| 42 | if (copy_to_user(buf, (page + offset), csize)) { | ||
| 43 | kfree(page); | ||
| 44 | return -EFAULT; | ||
| 45 | } | ||
| 46 | } else { | ||
| 47 | memcpy(buf, (page + offset), csize); | ||
| 48 | } | ||
| 49 | |||
| 50 | kfree(page); | ||
| 51 | return csize; | ||
| 52 | } | ||
