]> git.baikalelectronics.ru Git - kernel.git/commit
parisc: fix compile warnings triggered by atomic_sub(sizeof(),v)
authorHelge Deller <deller@gmx.de>
Sat, 2 Mar 2013 19:01:05 +0000 (20:01 +0100)
committerHelge Deller <deller@gmx.de>
Sat, 2 Mar 2013 19:01:05 +0000 (20:01 +0100)
commit82285371929a450ad193cd0d21ddbd96f2aa3dff
tree5c980c6f21806b50f4bf11bb414d4e217135a0a5
parentf4780d5037552f2bbd576e31cc232829da9336f7
parisc: fix compile warnings triggered by atomic_sub(sizeof(),v)

This fixes compile warnings like this one:
net/ipv4/igmp.c: In function ‘ip_mc_leave_group’:
net/ipv4/igmp.c:1898:3: warning: overflow in implicit constant conversion [-Woverflow]

atomic_sub() is defined as __atomic_add_return(-(VAL),(v))))
and if VAL is of type unsigned int (as returned by sizeof()), negating
this value will overflow. Fix this by type-casting VAL to int type.

Signed-off-by: Helge Deller <deller@gmx.de>
arch/parisc/include/asm/atomic.h