]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commit - lib/bitmap.c
lib: bitmap: eliminate branch in __bitmap_shift_left
authorRasmus Villemoes <linux@rasmusvillemoes.dk>
Fri, 13 Feb 2015 22:36:16 +0000 (14:36 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sat, 14 Feb 2015 05:21:35 +0000 (21:21 -0800)
commit6d874eca6595629258a5d9af237c5ae53a9544e1
tree444d682c304f39d2071ad1445ec0582abf5e46a6
parentdba94c2553da1928303c2a6c6410247c88cafc1d
lib: bitmap: eliminate branch in __bitmap_shift_left

We can shift the bits from lower and upper into place before assembling
dst[k + off]; moving the shift of lower into the branch where we already
know that rem is non-zero allows us to remove a conditional.

Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
lib/bitmap.c