The patch titled Subject: kexec: set KEXEC_TYPE_CRASH before sanity_check_segment_list() has been removed from the -mm tree. Its filename was kexec-set-kexec_type_crash-before-sanity_check_segment_list.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Xunlei Pang <xlpang@xxxxxxxxxx> Subject: kexec: set KEXEC_TYPE_CRASH before sanity_check_segment_list() sanity_check_segment_list() checks KEXEC_TYPE_CRASH flag to ensure all the segments of the loaded crash kernel are within the kernel crash resource limits, so set the flag beforehand. Signed-off-by: Xunlei Pang <xlpang@xxxxxxxxxx> Acked-by: Dave Young <dyoung@xxxxxxxxxx> Cc: Eric Biederman <ebiederm@xxxxxxxxxxxx> Cc: Vivek Goyal <vgoyal@xxxxxxxxxx> Acked-by: Baoquan He <bhe@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/kexec.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff -puN kernel/kexec.c~kexec-set-kexec_type_crash-before-sanity_check_segment_list kernel/kexec.c --- a/kernel/kexec.c~kexec-set-kexec_type_crash-before-sanity_check_segment_list +++ a/kernel/kexec.c @@ -63,16 +63,16 @@ static int kimage_alloc_init(struct kima if (ret) goto out_free_image; - ret = sanity_check_segment_list(image); - if (ret) - goto out_free_image; - - /* Enable the special crash kernel control page allocation policy. */ if (kexec_on_panic) { + /* Enable special crash kernel control page alloc policy. */ image->control_page = crashk_res.start; image->type = KEXEC_TYPE_CRASH; } + ret = sanity_check_segment_list(image); + if (ret) + goto out_free_image; + /* * Find a location for the control code buffer, and add it * the vector of segments so that it's pages will also be _ Patches currently in -mm which might be from xlpang@xxxxxxxxxx are kexec-introduce-a-protection-mechanism-for-the-crashkernel-reserved-memory.patch kexec-provide-arch_kexec_protectunprotect_crashkres.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html