mirror of
https://github.com/hardkernel/linux.git
synced 2026-03-24 19:40:21 +09:00
tipc: fix shift wrapping bug in map_get()
[ Upstream commite2b224abd9] There is a shift wrapping bug in this code so anything thing above 31 will return false. Fixes:35c55c9877("tipc: add neighbor monitoring framework") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
2ee85ac1b2
commit
22922da737
@@ -130,7 +130,7 @@ static void map_set(u64 *up_map, int i, unsigned int v)
|
||||
|
||||
static int map_get(u64 up_map, int i)
|
||||
{
|
||||
return (up_map & (1 << i)) >> i;
|
||||
return (up_map & (1ULL << i)) >> i;
|
||||
}
|
||||
|
||||
static struct tipc_peer *peer_prev(struct tipc_peer *peer)
|
||||
|
||||
Reference in New Issue
Block a user