1 #include <linux/highmem.h>
2 #include <linux/bootmem.h>
3 #include <linux/crash_dump.h>
4 #include <asm/uaccess.h>
5 #include <linux/slab.h>
7 static int __init parse_savemaxmem(char *p)
10 saved_max_pfn = (memparse(p, &p) >> PAGE_SHIFT) - 1;
14 __setup("savemaxmem=", parse_savemaxmem);
17 static void *kdump_buf_page;
20 * copy_oldmem_page - copy one page from "oldmem"
21 * @pfn: page frame number to be copied
22 * @buf: target memory address for the copy; this can be in kernel address
23 * space or user address space (see @userbuf)
24 * @csize: number of bytes to copy
25 * @offset: offset in bytes into the page (based on pfn) to begin the copy
26 * @userbuf: if set, @buf is in user address space, use copy_to_user(),
27 * otherwise @buf is in kernel address space, use memcpy().
29 * Copy a page from "oldmem". For this page, there is no pte mapped
30 * in the current kernel.
32 * Calling copy_to_user() in atomic context is not desirable. Hence first
33 * copying the data to a pre-allocated kernel page and then copying to user
34 * space in non-atomic context.
36 ssize_t copy_oldmem_page(unsigned long pfn, char *buf,
37 size_t csize, unsigned long offset, int userbuf)
44 vaddr = kmap_atomic_pfn(pfn);
47 memcpy(buf, (vaddr + offset), csize);
50 if (!kdump_buf_page) {
51 pr_warning("Kdump: Kdump buffer page not allocated\n");
55 copy_page(kdump_buf_page, vaddr);
57 if (copy_to_user(buf, (kdump_buf_page + offset), csize))
64 static int __init kdump_buf_page_init(void)
68 kdump_buf_page = kmalloc(PAGE_SIZE, GFP_KERNEL);
69 if (!kdump_buf_page) {
70 pr_warning("Kdump: Failed to allocate kdump buffer page\n");
76 arch_initcall(kdump_buf_page_init);