Re: [patch V2 1/2] mm: swap: Provide lru_add_drain_all_cpuslocked()

From: Thomas Gleixner
Date: Tue Jul 04 2017 - 08:36:26 EST


On Tue, 4 Jul 2017, Vlastimil Babka wrote:
> >
> > -void lru_add_drain_all(void)
> > +void lru_add_drain_all_cpuslocked(void)
> > {
> > static DEFINE_MUTEX(lock);
> > static struct cpumask has_work;
> > @@ -701,7 +701,6 @@ void lru_add_drain_all(void)
> > return;
> >
> > mutex_lock(&lock);
> > - get_online_cpus();
>
> Is there a an assertion check that we are locked, that could be put in
> e.g. VM_WARN_ON_ONCE()?

There is a lockdep assertion lockdep_assert_cpus_held() which could be
used. Forgot to add it.

Thanks,

tglx