Re: [PATCH] don't use flush_tlb_all in suspend time

From: Pavel Machek
Date: Sat May 20 2006 - 11:50:15 EST


Hi!

> > > > > @@ -420,7 +421,14 @@ void zap_low_mappings (void)
> > > > > #else
> > > > > set_pgd(swapper_pg_dir+i, __pgd(0));
> > > > > #endif
> > > > > - if (cpus_weight(cpu_online_map) == 1)
> > > > > + /*
> > > > > + * We can be called at suspend/resume time, with local interrupts
> > > > > + * disabled. But flush_tlb_all() requires that local interrupts be
> > > > > + * enabled.
> > > > > + *
> > > > > + * Happily, the APs are not yet started, so we can use local_flush_tlb() * in that case
> > > > > + */
> > > > > + if (num_online_cpus() == 1)
> > > > > local_flush_tlb();
> > > > > else
> > > > > flush_tlb_all();
> > > >
> > > > But this still scares. It means calling convention is "may enable
> > > > interrupts with >1 cpu, may not with == 1 cpu".
> > > Below patch should make things clean. How do you think?
> >
> > Nice...
> >
> > Could we perhaps reuse swsusp_pg_dir (just make it used for swsusp &
> > suspend-to-ram) to save a bit more code? It is in arch/i386/mm/init.c
> Ok, I guess this is what you want.

Yes, thanks a lot for patience.

> Signed-off-by: Shaohua Li <shaohua.li@xxxxxxxxx>

Acked-by: Pavel Machek <pavel@xxxxxxx>

--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/