]> git.baikalelectronics.ru Git - kernel.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)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 29 Oct 2014 23:33:14 +0000 (16:33 -0700)
commit8a69d641c665d2b8a819003615e01518b4843f93
tree279314a06c4f6211997b53caef834c866f957a6f
parentd952dbed3f3a5299626bc2db2c05b86c3ee0293d
lib/bitmap.c: fix undefined shift in __bitmap_shift_{left|right}()

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>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
lib/bitmap.c