* [patch] crashkernel allocation failure #1
@ 2007-06-22 9:39 Gerd Hoffmann
0 siblings, 0 replies; only message in thread
From: Gerd Hoffmann @ 2007-06-22 9:39 UTC (permalink / raw)
To: Xen Development Mailing List
[-- Attachment #1: Type: text/plain, Size: 472 bytes --]
Hi,
The kexec crash kernel area allocation code does some effort to move the
images (i.e. kernel+initrd) out of the way, so the crashkernel area can
be allocated at the default location (@16m).
In case initial_images_end is not page aligned a single page in the
middle of the crash kernel area is leaked though, making the whole move
effort fail.
The attached patch fixed that by rounding up initial_images_end to the
next page boundary.
please apply,
Gerd
[-- Attachment #2: xen-crashkernel.patch --]
[-- Type: text/x-patch, Size: 499 bytes --]
--- xen/arch/x86/setup.c.fix 2007-05-03 09:40:19.000000000 +0200
+++ xen/arch/x86/setup.c 2007-06-19 11:19:11.000000000 +0200
@@ -453,6 +453,7 @@
if ( initial_images_start < xenheap_phys_end )
initial_images_start = xenheap_phys_end;
initial_images_end = initial_images_start + modules_length;
+ initial_images_end = (initial_images_end + PAGE_SIZE - 1) & PAGE_MASK;
move_memory(initial_images_start,
mod[0].mod_start, mod[mbi->mods_count-1].mod_end);
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2007-06-22 9:39 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-22 9:39 [patch] crashkernel allocation failure #1 Gerd Hoffmann
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.