diff options
author | Petr Tesarik <ptesarik@suse.cz> | 2011-11-29 09:01:51 -0500 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2011-12-09 18:06:42 -0500 |
commit | 76d71ebddf23e8195dd5f7889cb2844530689907 (patch) | |
tree | 28521f44fbda9fbda89b8ab64641447682f6d954 /arch/ia64 | |
parent | 5611cc4572e889b62a7b4c72a413536bf6a9c416 (diff) |
[IA64] Merge overlapping reserved regions at boot
While working on the upcoming SLES11 SP2, I ran into an issue with booting the
panic kernel on a kernel crash. In the first iteration I found out that the
initial register backing store gets overwritten with zeroes, causing a kernel
crash shortly afterwards.
Further investigation revealed that rsvd_region[] contains overlapping
entries: find_memmap_space() returns a pointer which lies between KERNEL_START
and _end. This is correct with the EFI memmap as patched by the kexec
purgatory code. That code removes vmlinux LOAD segments from the usable map,
but there is a pretty large hole between the gate section and the per-cpu
section.
This happens because reserve_memory() blindly marks [KERNEL_START, __end]
as reserved, even though there is a free block in the middle in the kexec
case because it noticed a large gap between sections and modified the
efi_memory_map to account for this.
Signed-off-by: Petr Tesarik <ptesarik@suse.cz>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64')
-rw-r--r-- | arch/ia64/kernel/setup.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/arch/ia64/kernel/setup.c b/arch/ia64/kernel/setup.c index 5e2c72498c51..cd57d7312de0 100644 --- a/arch/ia64/kernel/setup.c +++ b/arch/ia64/kernel/setup.c | |||
@@ -220,6 +220,23 @@ sort_regions (struct rsvd_region *rsvd_region, int max) | |||
220 | } | 220 | } |
221 | } | 221 | } |
222 | 222 | ||
223 | /* merge overlaps */ | ||
224 | static int __init | ||
225 | merge_regions (struct rsvd_region *rsvd_region, int max) | ||
226 | { | ||
227 | int i; | ||
228 | for (i = 1; i < max; ++i) { | ||
229 | if (rsvd_region[i].start >= rsvd_region[i-1].end) | ||
230 | continue; | ||
231 | if (rsvd_region[i].end > rsvd_region[i-1].end) | ||
232 | rsvd_region[i-1].end = rsvd_region[i].end; | ||
233 | --max; | ||
234 | memmove(&rsvd_region[i], &rsvd_region[i+1], | ||
235 | (max - i) * sizeof(struct rsvd_region)); | ||
236 | } | ||
237 | return max; | ||
238 | } | ||
239 | |||
223 | /* | 240 | /* |
224 | * Request address space for all standard resources | 241 | * Request address space for all standard resources |
225 | */ | 242 | */ |
@@ -270,6 +287,7 @@ static void __init setup_crashkernel(unsigned long total, int *n) | |||
270 | if (ret == 0 && size > 0) { | 287 | if (ret == 0 && size > 0) { |
271 | if (!base) { | 288 | if (!base) { |
272 | sort_regions(rsvd_region, *n); | 289 | sort_regions(rsvd_region, *n); |
290 | *n = merge_regions(rsvd_region, *n); | ||
273 | base = kdump_find_rsvd_region(size, | 291 | base = kdump_find_rsvd_region(size, |
274 | rsvd_region, *n); | 292 | rsvd_region, *n); |
275 | } | 293 | } |
@@ -373,6 +391,7 @@ reserve_memory (void) | |||
373 | BUG_ON(IA64_MAX_RSVD_REGIONS + 1 < n); | 391 | BUG_ON(IA64_MAX_RSVD_REGIONS + 1 < n); |
374 | 392 | ||
375 | sort_regions(rsvd_region, num_rsvd_regions); | 393 | sort_regions(rsvd_region, num_rsvd_regions); |
394 | num_rsvd_regions = merge_regions(rsvd_region, num_rsvd_regions); | ||
376 | } | 395 | } |
377 | 396 | ||
378 | 397 | ||