public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Ben Widawsky <ben@bwidawsk.net>
To: Chris Wilson <chris@chris-wilson.co.uk>,
	Ben Widawsky <benjamin.widawsky@intel.com>,
	intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH] drm/i915: Prevent signals from interrupting close()
Date: Thu, 10 Apr 2014 23:44:34 -0700	[thread overview]
Message-ID: <20140411064434.GG7387@bwidawsk.net> (raw)
In-Reply-To: <20140409175841.GD14192@nuc-i3427.alporthouse.com>

On Wed, Apr 09, 2014 at 06:58:41PM +0100, Chris Wilson wrote:
> On Wed, Apr 09, 2014 at 10:43:47AM -0700, Ben Widawsky wrote:
> > On Wed, Apr 09, 2014 at 08:03:39AM +0100, Chris Wilson wrote:
> > > We neither report any unfinished operations during releasing GEM objects
> > > associated with the file, and even if we did, it is bad form to report
> > > -EINTR from a close().
> > > 
> > > The root cause of the bug that first showed itself during close is that
> > > we do not do proper live tracking of vma and contexts under full-ppgtt,
> > > but this is useful piece of defensive programming enforcing our
> > > userspace API contract.
> > > 
> > > Cc: Ben Widawsky <benjamin.widawsky@intel.com>
> > > Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> > > ---
> > >  drivers/gpu/drm/i915/i915_dma.c | 9 +++++++++
> > >  1 file changed, 9 insertions(+)
> > > 
> > > diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c
> > > index 24dd55a16436..d67ca8051e07 100644
> > > --- a/drivers/gpu/drm/i915/i915_dma.c
> > > +++ b/drivers/gpu/drm/i915/i915_dma.c
> > > @@ -1937,9 +1937,18 @@ void i915_driver_lastclose(struct drm_device * dev)
> > >  
> > >  void i915_driver_preclose(struct drm_device * dev, struct drm_file *file_priv)
> > >  {
> > > +	struct drm_i915_private *dev_priv = to_i915(dev);
> > > +	bool was_interruptible;
> > > +
> > >  	mutex_lock(&dev->struct_mutex);
> > > +	was_interruptible = dev_priv->mm.interruptible;
> > > +	WARN_ON(!was_interruptible);
> > > +	dev_priv->mm.interruptible = false;
> > > +
> > >  	i915_gem_context_close(dev, file_priv);
> > >  	i915_gem_release(dev, file_priv);
> > > +
> > > +	dev_priv->mm.interruptible = was_interruptible;
> > >  	mutex_unlock(&dev->struct_mutex);
> > >  }
> > >  
> > 
> > I guess you missed:
> > 1396905423-19453-1-git-send-email-benjamin.widawsky@intel.com
> 
> Oops, I did.
>  
> > True in my case, I should have put the read of
> > 'dev_priv->mm.interruptible' within the lock.
> > 
> > I don't think we need to protect gem_release.
> 
> My argument is that I want to protect the entire preclose() as it cannot
> be allowed to fail, i.e. all future bugs.
> -Chris
> 

Reviewed-by: Ben Widawsky <ben@bwidawsk.net>

(I haven't actually tested this patch, but it's similar enough to my
patch that I think it could probably get a Tested-by too)

-- 
Ben Widawsky, Intel Open Source Technology Center

      reply	other threads:[~2014-04-11  6:44 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-04-09  7:03 [PATCH] drm/i915: Prevent signals from interrupting close() Chris Wilson
2014-04-09 14:49 ` Daniel Vetter
2014-04-09 15:03   ` Chris Wilson
2014-04-09 16:50     ` Daniel Vetter
2014-04-09 16:57       ` Chris Wilson
2014-04-09 17:43 ` Ben Widawsky
2014-04-09 17:58   ` Chris Wilson
2014-04-11  6:44     ` Ben Widawsky [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=20140411064434.GG7387@bwidawsk.net \
    --to=ben@bwidawsk.net \
    --cc=benjamin.widawsky@intel.com \
    --cc=chris@chris-wilson.co.uk \
    --cc=intel-gfx@lists.freedesktop.org \
    /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