diff options
Diffstat (limited to 'include/net/arp.h')
| -rw-r--r-- | include/net/arp.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/arp.h b/include/net/arp.h index c8f580a0e6b1..4950191f6b2b 100644 --- a/include/net/arp.h +++ b/include/net/arp.h @@ -57,8 +57,8 @@ static inline void __ipv4_confirm_neigh(struct net_device *dev, u32 key)  		unsigned long now = jiffies;  		/* avoid dirtying neighbour */ -		if (n->confirmed != now) -			n->confirmed = now; +		if (READ_ONCE(n->confirmed) != now) +			WRITE_ONCE(n->confirmed, now);  	}  	rcu_read_unlock_bh();  }  |