diff options
Diffstat (limited to 'arch/powerpc/kernel/machine_kexec.c')
| -rw-r--r-- | arch/powerpc/kernel/machine_kexec.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/machine_kexec.c b/arch/powerpc/kernel/machine_kexec.c index b3abebb7ee64..d59e2b1bdcba 100644 --- a/arch/powerpc/kernel/machine_kexec.c +++ b/arch/powerpc/kernel/machine_kexec.c | |||
| @@ -93,10 +93,35 @@ void __init reserve_crashkernel(void) | |||
| 93 | KDUMP_KERNELBASE); | 93 | KDUMP_KERNELBASE); |
| 94 | 94 | ||
| 95 | crashk_res.start = KDUMP_KERNELBASE; | 95 | crashk_res.start = KDUMP_KERNELBASE; |
| 96 | #else | ||
| 97 | if (!crashk_res.start) { | ||
| 98 | /* | ||
| 99 | * unspecified address, choose a region of specified size | ||
| 100 | * can overlap with initrd (ignoring corruption when retained) | ||
| 101 | * ppc64 requires kernel and some stacks to be in first segemnt | ||
| 102 | */ | ||
| 103 | crashk_res.start = KDUMP_KERNELBASE; | ||
| 104 | } | ||
| 105 | |||
| 106 | crash_base = PAGE_ALIGN(crashk_res.start); | ||
| 107 | if (crash_base != crashk_res.start) { | ||
| 108 | printk("Crash kernel base must be aligned to 0x%lx\n", | ||
| 109 | PAGE_SIZE); | ||
| 110 | crashk_res.start = crash_base; | ||
| 111 | } | ||
| 112 | |||
| 96 | #endif | 113 | #endif |
| 97 | crash_size = PAGE_ALIGN(crash_size); | 114 | crash_size = PAGE_ALIGN(crash_size); |
| 98 | crashk_res.end = crashk_res.start + crash_size - 1; | 115 | crashk_res.end = crashk_res.start + crash_size - 1; |
| 99 | 116 | ||
| 117 | /* The crash region must not overlap the current kernel */ | ||
| 118 | if (overlaps_crashkernel(__pa(_stext), _end - _stext)) { | ||
| 119 | printk(KERN_WARNING | ||
| 120 | "Crash kernel can not overlap current kernel\n"); | ||
| 121 | crashk_res.start = crashk_res.end = 0; | ||
| 122 | return; | ||
| 123 | } | ||
| 124 | |||
| 100 | /* Crash kernel trumps memory limit */ | 125 | /* Crash kernel trumps memory limit */ |
| 101 | if (memory_limit && memory_limit <= crashk_res.end) { | 126 | if (memory_limit && memory_limit <= crashk_res.end) { |
| 102 | memory_limit = crashk_res.end + 1; | 127 | memory_limit = crashk_res.end + 1; |
