The patch titled kallsyms: fix potential overflow in binary search has been added to the -mm tree. Its filename is kallsyms-fix-potential-overflow-in-binary-search.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: kallsyms: fix potential overflow in binary search From: Vegard Nossum <vegard.nossum@xxxxxxxxx> This will probably never trigger... but it won't hurt to be careful. http://googleresearch.blogspot.com/2006/06/extra-extra-read-all-about-it-nearly.html Signed-off-by: Vegard Nossum <vegard.nossum@xxxxxxxxx> Cc: Joshua Bloch <jjb@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/kallsyms.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/kallsyms.c~kallsyms-fix-potential-overflow-in-binary-search kernel/kallsyms.c --- a/kernel/kallsyms.c~kallsyms-fix-potential-overflow-in-binary-search +++ a/kernel/kallsyms.c @@ -176,7 +176,7 @@ static unsigned long get_symbol_pos(unsi high = kallsyms_num_syms; while (high - low > 1) { - mid = (low + high) / 2; + mid = low + (high - low) / 2; if (kallsyms_addresses[mid] <= addr) low = mid; else _ Patches currently in -mm which might be from vegard.nossum@xxxxxxxxx are revert-acpica-fixes-for-unload-and-ddbhandles.patch kallsyms-fix-potential-overflow-in-binary-search.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