Re: [PATCH 2.6.30-rc7] x86: remove remap percpu allocator for thetime being

From: Ingo Molnar
Date: Sun May 24 2009 - 23:39:59 EST



* Ingo Molnar <mingo@xxxxxxx> wrote:

> > @@ -365,9 +249,7 @@ void __init setup_per_cpu_areas(void)
> > * of large page mappings. Please read comments on top of
> > * each allocator for details.
> > */
> > - ret = setup_pcpu_remap(static_size);
> > - if (ret < 0)
> > - ret = setup_pcpu_embed(static_size);
> > + ret = setup_pcpu_embed(static_size);
> > if (ret < 0)
> > ret = setup_pcpu_4k(static_size);
> > if (ret < 0)
>
> Please send a patch that only does the above chunk in essence. We
> can deal with the rest in .31.

I've committed the minimal patch below.

Thanks,

Ingo