net: napi: use READ_ONCE()/WRITE_ONCE()
authorEric Dumazet <edumazet@google.com>
Wed, 22 Apr 2020 16:13:28 +0000 (09:13 -0700)
committerDavid S. Miller <davem@davemloft.net>
Thu, 23 Apr 2020 19:43:20 +0000 (12:43 -0700)
commit7e417a66b86c110f4b282945dac82e21e0b08328
treeb927ae6c6296d1ca3037554c98e6b1d2165455a3
parent6f8b12d661d09b488b9ac879b8eafbd2cc4a1450
net: napi: use READ_ONCE()/WRITE_ONCE()

gro_flush_timeout and napi_defer_hard_irqs can be read
from napi_complete_done() while other cpus write the value,
whithout explicit synchronization.

Use READ_ONCE()/WRITE_ONCE() to annotate the races.

Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/dev.c
net/core/net-sysfs.c