From: Boris Brezillon <boris.brezillon@free-electrons.com>
To: Stefan Wahren <stefan.wahren@i2se.com>
Cc: David Airlie <airlied@linux.ie>, dri-devel@lists.freedesktop.org
Subject: Re: [PATCH] drm/vc4: Fix false positive WARN() backtrace on refcount_inc() usage
Date: Thu, 7 Dec 2017 13:56:33 +0100 [thread overview]
Message-ID: <20171207135633.7e51cfb2@bbrezillon> (raw)
In-Reply-To: <7f6a6c8e-cc56-2958-ba5a-2c467efb1055@i2se.com>
On Thu, 7 Dec 2017 13:31:34 +0100
Stefan Wahren <stefan.wahren@i2se.com> wrote:
> Hi Daniel,
>
>
> Am 24.11.2017 um 15:52 schrieb Daniel Vetter:
> > On Thu, Nov 23, 2017 at 09:24:11AM +0100, Boris Brezillon wrote:
> >> On Wed, 22 Nov 2017 16:13:31 -0800
> >> Eric Anholt <eric@anholt.net> wrote:
> >>
> >>> Boris Brezillon <boris.brezillon@free-electrons.com> writes:
> >>>
> >>>> On Wed, 22 Nov 2017 13:16:08 -0800
> >>>> Eric Anholt <eric@anholt.net> wrote:
> >>>>
> >>>>> Boris Brezillon <boris.brezillon@free-electrons.com> writes:
> >>>>>
> >>>>>> With CONFIG_REFCOUNT_FULL enabled, refcount_inc() complains when it's
> >>>>>> passed a refcount object that has its counter set to 0. In this driver,
> >>>>>> this is a valid use case since we want to increment ->usecnt only when
> >>>>>> the BO object starts to be used by real HW components and this is
> >>>>>> definitely not the case when the BO is created.
> >>>>>>
> >>>>>> Fix the problem by using refcount_inc_not_zero() instead of
> >>>>>> refcount_inc() and fallback to refcount_set(1) when
> >>>>>> refcount_inc_not_zero() returns false. Note that this 2-steps operation
> >>>>>> is not racy here because the whole section is protected by a mutex
> >>>>>> which guarantees that the counter does not change between the
> >>>>>> refcount_inc_not_zero() and refcount_set() calls.
> >>>>> If we're not following the model, and protecting the refcount by a
> >>>>> mutex, shouldn't we just be using addition and subtraction instead of
> >>>>> refcount's atomics?
> >>>> Actually, this mutex is protecting the bo->madv value which has to be
> >>>> checked when the counter reaches 0 (when decrementing) or 1 (when
> >>>> incrementing). We just benefit from this protection here, but ideally
> >>>> it would be better to have an refcount_inc_allow_zero() as suggested by
> >>>> Daniel.
> >>> Let me restate this to see if it makes sense: The refcount is always >=
> >>> 0, this is is the only path that increases the refcount from 0 to 1, and
> >>> it's (incidentally) protected by a mutex, so there's no race between the
> >>> attempted increase from nonzero and the set from nonzero to 1.
> >> Yep.
> >>
> >>> This seems fine to me as a bugfix.
> >> The discussion is going on in the other thread, let's wait a bit
> >> before taking a decision.
> > Let's not block the bugfix on reaching perfection imo. I'd merge this as
> > the minimal fix, and then apply the pretty paint once we have a clear idea
> > for that.
> > -Daniel
>
> sorry but i can't find it in the DRI tree.
Sorry for the delay. I applied it this morning [1] and it should appear
in the next -rc.
Regards,
Boris
[1]https://cgit.freedesktop.org/drm/drm-misc/log/?h=drm-misc-fixes
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
prev parent reply other threads:[~2017-12-07 12:56 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-11-22 20:39 [PATCH] drm/vc4: Fix false positive WARN() backtrace on refcount_inc() usage Boris Brezillon
2017-11-22 21:16 ` Eric Anholt
2017-11-22 21:28 ` Boris Brezillon
2017-11-23 0:13 ` Eric Anholt
2017-11-23 8:24 ` Boris Brezillon
2017-11-24 14:52 ` Daniel Vetter
2017-12-07 12:31 ` Stefan Wahren
2017-12-07 12:56 ` Boris Brezillon [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20171207135633.7e51cfb2@bbrezillon \
--to=boris.brezillon@free-electrons.com \
--cc=airlied@linux.ie \
--cc=dri-devel@lists.freedesktop.org \
--cc=stefan.wahren@i2se.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox