lkml.org 
[lkml]   [2011]   [Oct]   [19]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH 10/10] block: fix request_queue lifetime handling by making blk_queue_cleanup() proper shutdown
Hello,

On Wed, Oct 19, 2011 at 12:18:40PM -0400, Vivek Goyal wrote:
> > diff --git a/block/blk-throttle.c b/block/blk-throttle.c
> > index 900a0c9..8edb949 100644
> > --- a/block/blk-throttle.c
> > +++ b/block/blk-throttle.c
> > @@ -309,6 +309,10 @@ static struct throtl_grp * throtl_get_tg(struct throtl_data *td)
> > struct blkio_cgroup *blkcg;
> > struct request_queue *q = td->queue;
> >
> > + /* no throttling for dead queue */
> > + if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
> > + return NULL;
> > +
>
> May be blk_throtl_bio() is probably a better place to do this check, just
> before callig throtl_get_tg().

Hmmm... the thing is you need to check DEAD again once after releasing
and re-grabbing the queuelock, os if we move the test into the caller,
we end up having one in the caller and one in the callee, so I thought
it would be better to keep them in the same function. My opinion on
it isn't too strong tho. If you feel strong about it, please feel
free to move it.

Thank you.

--
tejun


\
 
 \ /
  Last update: 2011-10-19 19:15    [W:0.106 / U:0.408 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site