]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
lib/bitmap.c: fix undefined shift in __bitmap_shift_{left|right}()
authorJan Kara <jack@suse.cz>
Wed, 29 Oct 2014 21:50:44 +0000 (14:50 -0700)
committerJiri Slaby <jslaby@suse.cz>
Thu, 13 Nov 2014 18:02:56 +0000 (19:02 +0100)
commit001172f932584d9af4c76a2dda54ee71ec15dede
tree702c124c5397b9c8a8c8ac16ed48c59ab88109e1
parente005085a9e12af146a56354d36b540700e694c95
lib/bitmap.c: fix undefined shift in __bitmap_shift_{left|right}()

commit ea5d05b34aca25c066e0699512d0ffbd8ee6ac3e upstream.

If __bitmap_shift_left() or __bitmap_shift_right() are asked to shift by
a multiple of BITS_PER_LONG, they will try to shift a long value by
BITS_PER_LONG bits which is undefined.  Change the functions to avoid
the undefined shift.

Coverity id: 1192175
Coverity id: 1192174
Signed-off-by: Jan Kara <jack@suse.cz>
Cc: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
lib/bitmap.c