]> rtime.felk.cvut.cz Git - zynq/linux.git/commit
bitops: Fix shift overflow in GENMASK macros
authorMaxime COQUELIN <maxime.coquelin@st.com>
Thu, 6 Nov 2014 09:54:19 +0000 (10:54 +0100)
committerIngo Molnar <mingo@kernel.org>
Sun, 16 Nov 2014 08:55:39 +0000 (09:55 +0100)
commit00b4d9a14125f1e51874def2b9de6092e007412d
treee53b171b4b55fa49779bdb52e47ca26209da2867
parent206c5f60a3d902bc4b56dab2de3e88de5eb06108
bitops: Fix shift overflow in GENMASK macros

On some 32 bits architectures, including x86, GENMASK(31, 0) returns 0
instead of the expected ~0UL.

This is the same on some 64 bits architectures with GENMASK_ULL(63, 0).

This is due to an overflow in the shift operand, 1 << 32 for GENMASK,
1 << 64 for GENMASK_ULL.

Reported-by: Eric Paire <eric.paire@st.com>
Suggested-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: Maxime Coquelin <maxime.coquelin@st.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Cc: <stable@vger.kernel.org> # v3.13+
Cc: linux@rasmusvillemoes.dk
Cc: gong.chen@linux.intel.com
Cc: John Sullivan <jsrhbz@kanargh.force9.co.uk>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: Theodore Ts'o <tytso@mit.edu>
Fixes: 10ef6b0dffe4 ("bitops: Introduce a more generic BITMASK macro")
Link: http://lkml.kernel.org/r/1415267659-10563-1-git-send-email-maxime.coquelin@st.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
include/linux/bitops.h