WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

Re: [Xen-devel] blktap: fix reference to freed struct request.

To: Keir Fraser <keir.xen@xxxxxxxxx>
Subject: Re: [Xen-devel] blktap: fix reference to freed struct request.
From: Daniel Stodden <daniel.stodden@xxxxxxxxxx>
Date: Tue, 8 Mar 2011 11:09:04 -0800
Cc: Fitzhardinge <jeremy@xxxxxxxx>, "xen-devel@xxxxxxxxxxxxxxxxxxx" <xen-devel@xxxxxxxxxxxxxxxxxxx>, Jeremy
Delivery-date: Tue, 08 Mar 2011 11:15:07 -0800
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
In-reply-to: <C99C2C98.14545%keir.xen@xxxxxxxxx>
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
References: <C99C2C98.14545%keir.xen@xxxxxxxxx>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
On Tue, 2011-03-08 at 13:57 -0500, Keir Fraser wrote:
> On 08/03/2011 18:18, "Dominic Curran" <dominic.curran@xxxxxxxxxx> wrote:
> 
> > blktap: fix reference to freed struct request.
> > 
> > The request will be freed by the call to __blktap_end_rq(), so to
> > rq->q is invalid before spin_unlock_irq().
> 
> What tree is this for? Otherwise this could get dropped on the floor. If
> it's for 2.6.18, the only tree that I'm still responsible for, then it needs
> 2.6.18 mentioned in the subject line.

This should go into the pvops tree (but will need some path fixup) and
ideally goes into stable branch(es?) straight away. 2.6.18 won't have
that particular bug, unless that code was patched in.

Daniel

>  -- Keir
> 
> > Signed-off-by: Dominic Curran <dominic.curran@
> > Acked-by: Daniel Stodden <daniel.stodden@xxxxxxxxxx>
> > 
> > diff -r d971c4c2e309 drivers/xen/blktap2/device.c
> > --- a/drivers/xen/blktap2/device.c    Tue Mar 08 10:02:58 2011 -0800
> > +++ b/drivers/xen/blktap2/device.c    Tue Mar 08 10:04:28 2011 -0800
> > @@ -135,9 +135,11 @@
> >  static inline void
> >  blktap_end_rq(struct request *rq, int err)
> >  {
> > -    spin_lock_irq(rq->q->queue_lock);
> > +    struct request_queue *q = rq->q;
> > +
> > +    spin_lock_irq(q->queue_lock);
> >      __blktap_end_rq(rq, err);
> > -    spin_unlock_irq(rq->q->queue_lock);
> > +    spin_unlock_irq(q->queue_lock);
> >  }
> >  
> >  void
> > 
> > _______________________________________________
> > Xen-devel mailing list
> > Xen-devel@xxxxxxxxxxxxxxxxxxx
> > http://lists.xensource.com/xen-devel
> 
> 
> 
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@xxxxxxxxxxxxxxxxxxx
> http://lists.xensource.com/xen-devel



_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel

<Prev in Thread] Current Thread [Next in Thread>