net: Fix duplicate volatile warning.
jiffies is defined as "volatile". extern unsigned long volatile __jiffy_data jiffies; ACCESS_ONCE() uses "volatile". As a result, some compilers warn duplicate `volatile' for ACCESS_ONCE(jiffies). Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
b52b97a339
commit
ef22b7b65f
@@ -303,7 +303,7 @@ static inline void neigh_confirm(struct neighbour *neigh)
|
|||||||
|
|
||||||
static inline int neigh_event_send(struct neighbour *neigh, struct sk_buff *skb)
|
static inline int neigh_event_send(struct neighbour *neigh, struct sk_buff *skb)
|
||||||
{
|
{
|
||||||
unsigned long now = ACCESS_ONCE(jiffies);
|
unsigned long now = jiffies;
|
||||||
|
|
||||||
if (neigh->used != now)
|
if (neigh->used != now)
|
||||||
neigh->used = now;
|
neigh->used = now;
|
||||||
|
Reference in New Issue
Block a user