diff options
| author | Vivek Goyal <vgoyal@in.ibm.com> | 2006-01-09 23:51:50 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-10 11:01:28 -0500 |
| commit | 4ae362be509306eafa6441603686d33fefe321c1 (patch) | |
| tree | d16a59e9c85945a6cc4a0945c80c0ecd97815923 | |
| parent | ec9ce0dbaa734bc95ec73cf5c13f202f1adb219d (diff) | |
[PATCH] kdump: read previous kernel's memory
- Moving the crash_dump.c file to arch dependent part as kmap_atomic_pfn is
specific to i386 and highmem may not exist in other archs.
- Use ioremap for x86_64 to map the previous kernel memory.
- In copy_oldmem_page(), we now directly copy to the user/kernel buffer and
avoid the unneccesary copy to a kmalloc'd page.
Signed-off-by: Rachita Kothiyal <rachita@in.ibm.com>
Signed-off-by: Vivek Goyal <vgoyal@in.ibm.com>
Cc: Andi Kleen <ak@muc.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
| -rw-r--r-- | arch/i386/kernel/Makefile | 1 | ||||
| -rw-r--r-- | arch/i386/kernel/crash_dump.c | 74 | ||||
| -rw-r--r-- | arch/x86_64/kernel/Makefile | 1 | ||||
| -rw-r--r-- | arch/x86_64/kernel/crash_dump.c (renamed from kernel/crash_dump.c) | 35 | ||||
| -rw-r--r-- | fs/proc/vmcore.c | 3 | ||||
| -rw-r--r-- | kernel/Makefile | 1 |
6 files changed, 88 insertions, 27 deletions
diff --git a/arch/i386/kernel/Makefile b/arch/i386/kernel/Makefile index be1880bb75b4..60c3f76dfca4 100644 --- a/arch/i386/kernel/Makefile +++ b/arch/i386/kernel/Makefile | |||
| @@ -25,6 +25,7 @@ obj-$(CONFIG_X86_LOCAL_APIC) += apic.o nmi.o | |||
| 25 | obj-$(CONFIG_X86_IO_APIC) += io_apic.o | 25 | obj-$(CONFIG_X86_IO_APIC) += io_apic.o |
| 26 | obj-$(CONFIG_X86_REBOOTFIXUPS) += reboot_fixups.o | 26 | obj-$(CONFIG_X86_REBOOTFIXUPS) += reboot_fixups.o |
| 27 | obj-$(CONFIG_KEXEC) += machine_kexec.o relocate_kernel.o crash.o | 27 | obj-$(CONFIG_KEXEC) += machine_kexec.o relocate_kernel.o crash.o |
| 28 | obj-$(CONFIG_CRASH_DUMP) += crash_dump.o | ||
| 28 | obj-$(CONFIG_X86_NUMAQ) += numaq.o | 29 | obj-$(CONFIG_X86_NUMAQ) += numaq.o |
| 29 | obj-$(CONFIG_X86_SUMMIT_NUMA) += summit.o | 30 | obj-$(CONFIG_X86_SUMMIT_NUMA) += summit.o |
| 30 | obj-$(CONFIG_KPROBES) += kprobes.o | 31 | obj-$(CONFIG_KPROBES) += kprobes.o |
diff --git a/arch/i386/kernel/crash_dump.c b/arch/i386/kernel/crash_dump.c new file mode 100644 index 000000000000..3f532df488bc --- /dev/null +++ b/arch/i386/kernel/crash_dump.c | |||
| @@ -0,0 +1,74 @@ | |||
| 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/errno.h> | ||
| 9 | #include <linux/highmem.h> | ||
| 10 | #include <linux/crash_dump.h> | ||
| 11 | |||
| 12 | #include <asm/uaccess.h> | ||
| 13 | |||
| 14 | static void *kdump_buf_page; | ||
| 15 | |||
| 16 | /** | ||
| 17 | * copy_oldmem_page - copy one page from "oldmem" | ||
| 18 | * @pfn: page frame number to be copied | ||
| 19 | * @buf: target memory address for the copy; this can be in kernel address | ||
| 20 | * space or user address space (see @userbuf) | ||
| 21 | * @csize: number of bytes to copy | ||
| 22 | * @offset: offset in bytes into the page (based on pfn) to begin the copy | ||
| 23 | * @userbuf: if set, @buf is in user address space, use copy_to_user(), | ||
| 24 | * otherwise @buf is in kernel address space, use memcpy(). | ||
| 25 | * | ||
| 26 | * Copy a page from "oldmem". For this page, there is no pte mapped | ||
| 27 | * in the current kernel. We stitch up a pte, similar to kmap_atomic. | ||
| 28 | * | ||
| 29 | * Calling copy_to_user() in atomic context is not desirable. Hence first | ||
| 30 | * copying the data to a pre-allocated kernel page and then copying to user | ||
| 31 | * space in non-atomic context. | ||
| 32 | */ | ||
| 33 | ssize_t copy_oldmem_page(unsigned long pfn, char *buf, | ||
| 34 | size_t csize, unsigned long offset, int userbuf) | ||
| 35 | { | ||
| 36 | void *vaddr; | ||
| 37 | |||
| 38 | if (!csize) | ||
| 39 | return 0; | ||
| 40 | |||
| 41 | vaddr = kmap_atomic_pfn(pfn, KM_PTE0); | ||
| 42 | |||
| 43 | if (!userbuf) { | ||
| 44 | memcpy(buf, (vaddr + offset), csize); | ||
| 45 | kunmap_atomic(vaddr, KM_PTE0); | ||
| 46 | } else { | ||
| 47 | if (!kdump_buf_page) { | ||
| 48 | printk(KERN_WARNING "Kdump: Kdump buffer page not" | ||
| 49 | " allocated\n"); | ||
| 50 | return -EFAULT; | ||
| 51 | } | ||
| 52 | copy_page(kdump_buf_page, vaddr); | ||
| 53 | kunmap_atomic(vaddr, KM_PTE0); | ||
| 54 | if (copy_to_user(buf, (kdump_buf_page + offset), csize)) | ||
| 55 | return -EFAULT; | ||
| 56 | } | ||
| 57 | |||
| 58 | return csize; | ||
| 59 | } | ||
| 60 | |||
| 61 | static int __init kdump_buf_page_init(void) | ||
| 62 | { | ||
| 63 | int ret = 0; | ||
| 64 | |||
| 65 | kdump_buf_page = kmalloc(PAGE_SIZE, GFP_KERNEL); | ||
| 66 | if (!kdump_buf_page) { | ||
| 67 | printk(KERN_WARNING "Kdump: Failed to allocate kdump buffer" | ||
| 68 | " page\n"); | ||
| 69 | ret = -ENOMEM; | ||
| 70 | } | ||
| 71 | |||
| 72 | return ret; | ||
| 73 | } | ||
| 74 | arch_initcall(kdump_buf_page_init); | ||
diff --git a/arch/x86_64/kernel/Makefile b/arch/x86_64/kernel/Makefile index fe4cbd1c4b2f..12bc54005e2f 100644 --- a/arch/x86_64/kernel/Makefile +++ b/arch/x86_64/kernel/Makefile | |||
| @@ -22,6 +22,7 @@ obj-$(CONFIG_X86_LOCAL_APIC) += apic.o nmi.o | |||
| 22 | obj-$(CONFIG_X86_IO_APIC) += io_apic.o mpparse.o \ | 22 | obj-$(CONFIG_X86_IO_APIC) += io_apic.o mpparse.o \ |
| 23 | genapic.o genapic_cluster.o genapic_flat.o | 23 | genapic.o genapic_cluster.o genapic_flat.o |
| 24 | obj-$(CONFIG_KEXEC) += machine_kexec.o relocate_kernel.o crash.o | 24 | obj-$(CONFIG_KEXEC) += machine_kexec.o relocate_kernel.o crash.o |
| 25 | obj-$(CONFIG_CRASH_DUMP) += crash_dump.o | ||
| 25 | obj-$(CONFIG_PM) += suspend.o | 26 | obj-$(CONFIG_PM) += suspend.o |
| 26 | obj-$(CONFIG_SOFTWARE_SUSPEND) += suspend_asm.o | 27 | obj-$(CONFIG_SOFTWARE_SUSPEND) += suspend_asm.o |
| 27 | obj-$(CONFIG_CPU_FREQ) += cpufreq/ | 28 | obj-$(CONFIG_CPU_FREQ) += cpufreq/ |
diff --git a/kernel/crash_dump.c b/arch/x86_64/kernel/crash_dump.c index fccb27dbc623..942deac4d43a 100644 --- a/kernel/crash_dump.c +++ b/arch/x86_64/kernel/crash_dump.c | |||
| @@ -5,21 +5,12 @@ | |||
| 5 | * Copyright (C) IBM Corporation, 2004. All rights reserved | 5 | * Copyright (C) IBM Corporation, 2004. All rights reserved |
| 6 | */ | 6 | */ |
| 7 | 7 | ||
| 8 | #include <linux/smp_lock.h> | ||
| 9 | #include <linux/errno.h> | 8 | #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> | 9 | #include <linux/crash_dump.h> |
| 14 | 10 | ||
| 15 | #include <asm/io.h> | ||
| 16 | #include <asm/uaccess.h> | 11 | #include <asm/uaccess.h> |
| 17 | #include <asm/kexec.h> | 12 | #include <asm/io.h> |
| 18 | |||
| 19 | /* Stores the physical address of elf header of crash image. */ | ||
| 20 | unsigned long long elfcorehdr_addr = ELFCORE_ADDR_MAX; | ||
| 21 | 13 | ||
| 22 | #ifndef HAVE_ARCH_COPY_OLDMEM_PAGE | ||
| 23 | /** | 14 | /** |
| 24 | * copy_oldmem_page - copy one page from "oldmem" | 15 | * copy_oldmem_page - copy one page from "oldmem" |
| 25 | * @pfn: page frame number to be copied | 16 | * @pfn: page frame number to be copied |
| @@ -34,31 +25,23 @@ unsigned long long elfcorehdr_addr = ELFCORE_ADDR_MAX; | |||
| 34 | * in the current kernel. We stitch up a pte, similar to kmap_atomic. | 25 | * in the current kernel. We stitch up a pte, similar to kmap_atomic. |
| 35 | */ | 26 | */ |
| 36 | ssize_t copy_oldmem_page(unsigned long pfn, char *buf, | 27 | ssize_t copy_oldmem_page(unsigned long pfn, char *buf, |
| 37 | size_t csize, unsigned long offset, int userbuf) | 28 | size_t csize, unsigned long offset, int userbuf) |
| 38 | { | 29 | { |
| 39 | void *page, *vaddr; | 30 | void *vaddr; |
| 40 | 31 | ||
| 41 | if (!csize) | 32 | if (!csize) |
| 42 | return 0; | 33 | return 0; |
| 43 | 34 | ||
| 44 | page = kmalloc(PAGE_SIZE, GFP_KERNEL); | 35 | vaddr = ioremap(pfn << PAGE_SHIFT, PAGE_SIZE); |
| 45 | if (!page) | ||
| 46 | return -ENOMEM; | ||
| 47 | |||
| 48 | vaddr = kmap_atomic_pfn(pfn, KM_PTE0); | ||
| 49 | copy_page(page, vaddr); | ||
| 50 | kunmap_atomic(vaddr, KM_PTE0); | ||
| 51 | 36 | ||
| 52 | if (userbuf) { | 37 | if (userbuf) { |
| 53 | if (copy_to_user(buf, (page + offset), csize)) { | 38 | if (copy_to_user(buf, (vaddr + offset), csize)) { |
| 54 | kfree(page); | 39 | iounmap(vaddr); |
| 55 | return -EFAULT; | 40 | return -EFAULT; |
| 56 | } | 41 | } |
| 57 | } else { | 42 | } else |
| 58 | memcpy(buf, (page + offset), csize); | 43 | memcpy(buf, (vaddr + offset), csize); |
| 59 | } | ||
| 60 | 44 | ||
| 61 | kfree(page); | 45 | iounmap(vaddr); |
| 62 | return csize; | 46 | return csize; |
| 63 | } | 47 | } |
| 64 | #endif | ||
diff --git a/fs/proc/vmcore.c b/fs/proc/vmcore.c index 3b2e7b69e63a..5378d7c78419 100644 --- a/fs/proc/vmcore.c +++ b/fs/proc/vmcore.c | |||
| @@ -35,6 +35,9 @@ static size_t elfcorebuf_sz; | |||
| 35 | /* Total size of vmcore file. */ | 35 | /* Total size of vmcore file. */ |
| 36 | static u64 vmcore_size; | 36 | static u64 vmcore_size; |
| 37 | 37 | ||
| 38 | /* Stores the physical address of elf header of crash image. */ | ||
| 39 | unsigned long long elfcorehdr_addr = ELFCORE_ADDR_MAX; | ||
| 40 | |||
| 38 | struct proc_dir_entry *proc_vmcore = NULL; | 41 | struct proc_dir_entry *proc_vmcore = NULL; |
| 39 | 42 | ||
| 40 | /* Reads a page from the oldmem device from given offset. */ | 43 | /* Reads a page from the oldmem device from given offset. */ |
diff --git a/kernel/Makefile b/kernel/Makefile index a940bac02837..1e039700c0ad 100644 --- a/kernel/Makefile +++ b/kernel/Makefile | |||
| @@ -30,7 +30,6 @@ obj-$(CONFIG_KPROBES) += kprobes.o | |||
| 30 | obj-$(CONFIG_SYSFS) += ksysfs.o | 30 | obj-$(CONFIG_SYSFS) += ksysfs.o |
| 31 | obj-$(CONFIG_DETECT_SOFTLOCKUP) += softlockup.o | 31 | obj-$(CONFIG_DETECT_SOFTLOCKUP) += softlockup.o |
| 32 | obj-$(CONFIG_GENERIC_HARDIRQS) += irq/ | 32 | obj-$(CONFIG_GENERIC_HARDIRQS) += irq/ |
| 33 | obj-$(CONFIG_CRASH_DUMP) += crash_dump.o | ||
| 34 | obj-$(CONFIG_SECCOMP) += seccomp.o | 33 | obj-$(CONFIG_SECCOMP) += seccomp.o |
| 35 | obj-$(CONFIG_RCU_TORTURE_TEST) += rcutorture.o | 34 | obj-$(CONFIG_RCU_TORTURE_TEST) += rcutorture.o |
| 36 | 35 | ||
