All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Michel Dänzer" <michel@daenzer.net>
To: j.glisse@gmail.com
Cc: dri-devel@lists.freedesktop.org
Subject: Re: [PATCH] drm/radeon: fix bo creation retry path
Date: Tue, 21 Aug 2012 09:03:46 +0200	[thread overview]
Message-ID: <1345532626.2924.210.camel@thor.local> (raw)
In-Reply-To: <1342158840.5901.257.camel@thor.local>

On Fre, 2012-07-13 at 07:54 +0200, Michel Dänzer wrote: 
> On Don, 2012-07-12 at 18:23 -0400, j.glisse@gmail.com wrote: 
> > From: Jerome Glisse <jglisse@redhat.com>
> > 
> > Retry label was at wrong place in function leading to memory
> > leak.
> > 
> > Cc: <stable@vger.kernel.org>
> > Signed-off-by: Jerome Glisse <jglisse@redhat.com>
> > ---
> >  drivers/gpu/drm/radeon/radeon_object.c |    3 ++-
> >  1 file changed, 2 insertions(+), 1 deletion(-)
> > 
> > diff --git a/drivers/gpu/drm/radeon/radeon_object.c b/drivers/gpu/drm/radeon/radeon_object.c
> > index 6ecb200..f71e472 100644
> > --- a/drivers/gpu/drm/radeon/radeon_object.c
> > +++ b/drivers/gpu/drm/radeon/radeon_object.c
> > @@ -138,7 +138,6 @@ int radeon_bo_create(struct radeon_device *rdev,
> >  	acc_size = ttm_bo_dma_acc_size(&rdev->mman.bdev, size,
> >  				       sizeof(struct radeon_bo));
> >  
> > -retry:
> >  	bo = kzalloc(sizeof(struct radeon_bo), GFP_KERNEL);
> >  	if (bo == NULL)
> >  		return -ENOMEM;
> > @@ -152,6 +151,8 @@ retry:
> >  	bo->surface_reg = -1;
> >  	INIT_LIST_HEAD(&bo->list);
> >  	INIT_LIST_HEAD(&bo->va);
> > +
> > +retry:
> >  	radeon_ttm_placement_from_domain(bo, domain);
> >  	/* Kernel allocation are uninterruptible */
> >  	down_read(&rdev->pm.mclk_lock);
> 
> Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>

Actually, this is wrong: ttm_bo_init() destroys the BO on failure. So
this patch makes the retry path work with freed memory. I see on IRC
that this is causing panics with some piglit tests for several people,
please submit a patch to revert this.

Sorry I didn't remember this when reviewing the patch. :(


-- 
Earthling Michel Dänzer           |                   http://www.amd.com
Libre software enthusiast         |          Debian, X and DRI developer

  reply	other threads:[~2012-08-21  7:04 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-12 22:23 [PATCH] drm/radeon: fix bo creation retry path j.glisse
2012-07-13  5:54 ` Michel Dänzer
2012-08-21  7:03   ` Michel Dänzer [this message]
2012-08-21 14:15     ` Alex Deucher
2012-07-13  7:43 ` Christian König

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=1345532626.2924.210.camel@thor.local \
    --to=michel@daenzer.net \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=j.glisse@gmail.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.