lkml.org 
[lkml]   [2022]   [Dec]   [1]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH -next v2 9/9] blk-iocost: fix walk_list corruption
On Thu, Dec 01, 2022 at 09:19:54AM +0800, Yu Kuai wrote:
> > > diff --git a/block/blk-iocost.c b/block/blk-iocost.c
> > > index 710cf63a1643..d2b873908f88 100644
> > > --- a/block/blk-iocost.c
> > > +++ b/block/blk-iocost.c
> > > @@ -2813,13 +2813,14 @@ static void ioc_rqos_exit(struct rq_qos *rqos)
> > > {
> > > struct ioc *ioc = rqos_to_ioc(rqos);
> > > + del_timer_sync(&ioc->timer);
> > > +
> > > blkcg_deactivate_policy(rqos->q, &blkcg_policy_iocost);
> > > spin_lock_irq(&ioc->lock);
> > > ioc->running = IOC_STOP;
> > > spin_unlock_irq(&ioc->lock);
> > > - del_timer_sync(&ioc->timer);
> >
> > I don't about this workaround. Let's fix properly?
>
> Ok, and by the way, is there any reason to delete timer after
> deactivate policy? This seems a litter wreid to me.

ioc->running is what controls whether the timer gets rescheduled or not. If
we don't shut that down, the timer may as well get rescheduled after being
deleted. Here, the only extra activation point is IO issue which shouldn't
trigger during rq_qos_exit, so the ordering shouldn't matter but this is the
right order for anything which can get restarted.

Thanks.

--
tejun

\
 
 \ /
  Last update: 2022-12-01 11:02    [W:0.796 / U:0.076 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site