The patch titled Subject: kexec-ensure-user-memory-sizes-do-not-wrap-fix has been removed from the -mm tree. Its filename was kexec-ensure-user-memory-sizes-do-not-wrap-fix.patch This patch was dropped because it was folded into kexec-ensure-user-memory-sizes-do-not-wrap.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: kexec-ensure-user-memory-sizes-do-not-wrap-fix fix it for kexec-return-error-number-directly.patch Cc: Baoquan He <bhe@xxxxxxxxxx> Cc: Dave Young <dyoung@xxxxxxxxxx> Cc: Eric Biederman <ebiederm@xxxxxxxxxxxx> Cc: Keerthy <j-keerthy@xxxxxx> Cc: Pratyush Anand <panand@xxxxxxxxxx> Cc: Russell King <rmk+kernel@xxxxxxxxxxxxxxxx> Cc: Simon Horman <horms@xxxxxxxxxxxx> Cc: Vitaly Andrianov <vitalya@xxxxxx> Cc: Vivek Goyal <vgoyal@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/kexec_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/kexec_core.c~kexec-ensure-user-memory-sizes-do-not-wrap-fix kernel/kexec_core.c --- a/kernel/kexec_core.c~kexec-ensure-user-memory-sizes-do-not-wrap-fix +++ a/kernel/kexec_core.c @@ -169,7 +169,7 @@ int sanity_check_segment_list(struct kim mstart = image->segment[i].mem; mend = mstart + image->segment[i].memsz; if (mstart > mend) - return result; + return -EADDRNOTAVAIL; if ((mstart & ~PAGE_MASK) || (mend & ~PAGE_MASK)) return -EADDRNOTAVAIL; if (mend >= KEXEC_DESTINATION_MEMORY_LIMIT) _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are kexec-ensure-user-memory-sizes-do-not-wrap.patch kexec-allow-architectures-to-override-boot-mapping-fix.patch allow-kdump-with-crash_kexec_post_notifiers-fix.patch kexec-add-restriction-on-kexec_load-segment-sizes-fix.patch powerpc-fsl_rio-apply-changes-for-rio-spec-rev-3-fix.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