Re: [PATCH] refcount: introduce refcount_is_one() helper function

From: Peter Zijlstra
Date: Thu Nov 18 2021 - 05:49:48 EST


On Thu, Nov 18, 2021 at 10:34:44AM +0000, yajun.deng@xxxxxxxxx wrote:
> November 18, 2021 4:44 PM, "Peter Zijlstra" <peterz@xxxxxxxxxxxxx> wrote:
>
> > On Thu, Nov 18, 2021 at 08:12:56AM +0000, yajun.deng@xxxxxxxxx wrote:
> >
> >> November 18, 2021 3:42 PM, "Peter Zijlstra" <peterz@xxxxxxxxxxxxx> wrote:
> >>
> >> On Thu, Nov 18, 2021 at 11:53:28AM +0800, Yajun Deng wrote:
> >>
> >> There are many cases where it is necessary to determine if refcount is one,
> >> introduce refcount_is_one() helper function for these cases.
> >>
> >> Give me one that is not racy?
> >>
> >> The following determine refcount is one, 35 count.
> >
> > Very good, now get me one that isn't broken :-)
>
> Sorry, I didn't understand what is the 'isn't broken'。

What's the value of refcount_read() given that at any moment a
concurrent refcount_{inc,dec}() can happen?

If you can't know the current value (per the above) then what's the
value of knowing it was one some time ago?

Fundamentally using refcount_read() in control flow is broken, it's a
very bad anti-pattern.