[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20190529054759.qrw7h73g62mnbica@gondor.apana.org.au>
Date: Wed, 29 May 2019 13:47:59 +0800
From: Herbert Xu <herbert@...dor.apana.org.au>
To: Dmitry Vyukov <dvyukov@...gle.com>
Cc: Eric Dumazet <edumazet@...gle.com>,
David Miller <davem@...emloft.net>,
netdev <netdev@...r.kernel.org>,
Eric Dumazet <eric.dumazet@...il.com>,
syzbot <syzkaller@...glegroups.com>
Subject: Re: [PATCH] inet: frags: Remove unnecessary
smp_store_release/READ_ONCE
On Wed, May 29, 2019 at 07:43:51AM +0200, Dmitry Vyukov wrote:
>
> If fqdir->dead read/write are concurrent, then this still needs to be
> READ_ONCE/WRITE_ONCE. Ordering is orthogonal to atomicity.
No they do not. READ_ONCE/WRITE_ONCE are basically a more fine-tuned
version of barrier(). In this case we already have an implicit
barrier() call due to the memory barrier semantics so this is simply
unnecessary.
It's the same reason you don't need READ_ONCE/WRITE_ONCE when you do:
CPU1 CPU2
---- ----
spin_lock
shared_var = 1 spin_lock
spin_unlock if (shared_var == 1)
...
spin_unlock
Cheers,
--
Email: Herbert Xu <herbert@...dor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
Powered by blists - more mailing lists