The patch titled Subject: lib-string_helpersc-fix-infinite-loop-in-string_get_size-v3 has been added to the -mm tree. Its filename is lib-string_helpersc-fix-infinite-loop-in-string_get_size-v3.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/lib-string_helpersc-fix-infinite-loop-in-string_get_size-v3.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/lib-string_helpersc-fix-infinite-loop-in-string_get_size-v3.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 *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Vitaly Kuznetsov <vkuznets@xxxxxxxxxx> Subject: lib-string_helpersc-fix-infinite-loop-in-string_get_size-v3 Signed-off-by: Vitaly Kuznetsov <vkuznets@xxxxxxxxxx> Acked-by: James Bottomley <JBottomley@xxxxxxxx> Cc: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx> Cc: Rasmus Villemoes <linux@xxxxxxxxxxxxxxxxxx> Cc: "K. Y. Srinivasan" <kys@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/string_helpers.c | 4 ++++ 1 file changed, 4 insertions(+) diff -puN lib/string_helpers.c~lib-string_helpersc-fix-infinite-loop-in-string_get_size-v3 lib/string_helpers.c --- a/lib/string_helpers.c~lib-string_helpersc-fix-infinite-loop-in-string_get_size-v3 +++ a/lib/string_helpers.c @@ -59,6 +59,10 @@ void string_get_size(u64 size, u64 blk_s } exp = divisor[units] / (u32)blk_size; + /* + * size must be strictly greater than exp here to ensure that remainder + * is greater than divisor[units] coming out of the if below. + */ if (size > exp) { remainder = do_div(size, divisor[units]); remainder *= blk_size; _ Patches currently in -mm which might be from vkuznets@xxxxxxxxxx are lib-string_helpersc-fix-infinite-loop-in-string_get_size.patch lib-string_helpersc-fix-infinite-loop-in-string_get_size-v3.patch lib-test-string_helpersc-add-string_get_size-tests.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