The patch titled Subject: lib/bitmap.c: correct a code style and do some, optimization has been added to the -mm tree. Its filename is lib-bitmapc-correct-a-code-style-and-do-some-optimization.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/lib-bitmapc-correct-a-code-style-and-do-some-optimization.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/lib-bitmapc-correct-a-code-style-and-do-some-optimization.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: Pan Xinhui <xinhuix.pan@xxxxxxxxx> Subject: lib/bitmap.c: correct a code style and do some, optimization We can avoid in-loop incrementation of ndigits. Save current totaldigits to ndigits before loop, and check ndigits against totaldigits after the loop. Signed-off-by: Pan Xinhui <xinhuix.pan@xxxxxxxxx> Cc: Yury Norov <yury.norov@xxxxxxxxx> Cc: Chris Metcalf <cmetcalf@xxxxxxxxxx> Cc: Rasmus Villemoes <linux@xxxxxxxxxxxxxxxxxx> Cc: Sudeep Holla <sudeep.holla@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/bitmap.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff -puN lib/bitmap.c~lib-bitmapc-correct-a-code-style-and-do-some-optimization lib/bitmap.c --- a/lib/bitmap.c~lib-bitmapc-correct-a-code-style-and-do-some-optimization +++ a/lib/bitmap.c @@ -367,7 +367,8 @@ int __bitmap_parse(const char *buf, unsi nchunks = nbits = totaldigits = c = 0; do { - chunk = ndigits = 0; + chunk = 0; + ndigits = totaldigits; /* Get the next chunk of the bitmap */ while (buflen) { @@ -406,9 +407,9 @@ int __bitmap_parse(const char *buf, unsi return -EOVERFLOW; chunk = (chunk << 4) | hex_to_bin(c); - ndigits++; totaldigits++; + totaldigits++; } - if (ndigits == 0) + if (ndigits == totaldigits) return -EINVAL; if (nchunks == 0 && chunk == 0) continue; _ Patches currently in -mm which might be from xinhuix.pan@xxxxxxxxx are lib-bitmapc-correct-a-code-style-and-do-some-optimization.patch lib-bitmapc-fix-a-special-string-handling-bug-in-__bitmap_parselist.patch lib-bitmapc-bitmap_parselist-can-accept-string-with-whitespaces-on-head-or-tail.patch linux-next.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