Hari Bathini <hbathini@xxxxxxxxxxxxx> writes: > The kexec purgatory has to run in real mode. Only the first memory > block maybe accessible in real mode. And, unlike the case with panic > kernel, no memory is set aside for regular kexec load. Another thing > to note is, the memory for crashkernel is reserved at an offset of > 128MB. So, when crashkernel memory is reserved, the memory ranges to > load kexec segments shrink further as the generic code only looks for > memblock free memory ranges and in all likelihood only a tiny bit of > memory from 0 to 128MB would be available to load kexec segments. > > With kdump being used by default in general, kexec file load is likely > to fail almost always. Ah. I wasn't aware of this problem. > This can be fixed by changing the memory hole > lookup logic for regular kexec to use the same method as kdump. Right. It doesn't make that much sense to use memblock to find free memory areas for the kexec kernel, because memblock tracks which memory areas are free for the currently running kernel. But that's not what matters for the kernel that will be kexec'd into. In this case, regions which may be reserved for the current OS instance may well be free for a freshly started kernel. The kdump method is better at knowing which memory regions are actually reserved by the firmware/hardware. > This > would mean that most kexec segments will overlap with crashkernel > memory region. That should still be ok as the pages, whose destination > address isn't available while loading, are placed in an intermediate > location till a flush to the actual destination address happens during > kexec boot sequence. Yes, since the kdump kernel and the "regular" kexec kernel can't be both booted at the same time, it's not a problem if both plan to use the same region of memory. > > Signed-off-by: Hari Bathini <hbathini@xxxxxxxxxxxxx> > Tested-by: Pingfan Liu <piliu@xxxxxxxxxx> Reviewed-by: Thiago Jung Bauermann <bauerman@xxxxxxxxxxxxx> > --- > > v2 -> v3: > * Unchanged. Added Tested-by tag from Pingfan. > > v1 -> v2: > * New patch to fix locating memory hole for kexec_file_load (kexec -s -l) > when memory is reserved for crashkernel. > > > arch/powerpc/kexec/file_load_64.c | 33 ++++++++++++++------------------- > 1 file changed, 14 insertions(+), 19 deletions(-) -- Thiago Jung Bauermann IBM Linux Technology Center _______________________________________________ kexec mailing list kexec@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/kexec