Re: [PATCH] mm, meminit: Serially initialise deferred memory if trace_buf_size is specified

From: Andrew Morton
Date: Wed Nov 15 2017 - 14:49:32 EST


On Wed, 15 Nov 2017 08:55:56 +0000 Mel Gorman <mgorman@xxxxxxxxxxxxxxxxxxx> wrote:

> Yasuaki Ishimatsu reported a premature OOM when trace_buf_size=100m was
> specified on a machine with many CPUs. The kernel tried to allocate 38.4GB
> but only 16GB was available due to deferred memory initialisation.
>
> The allocation context is within smp_init() so there are no opportunities
> to do the deferred meminit earlier. Furthermore, the partial initialisation
> of memory occurs before the size of the trace buffers is set so there is
> no opportunity to adjust the amount of memory that is pre-initialised. We
> could potentially catch when memory is low during system boot and adjust the
> amount that is initialised serially but it's a little clumsy as it would
> require a check in the failure path of the page allocator. Given that
> deferred meminit is basically a minor optimisation that only benefits very
> large machines and trace_buf_size is somewhat specialised, it follows that
> the most straight-forward option is to go back to serialised meminit if
> trace_buf_size is specified.

Patch is rather messy.

I went cross-eyed trying to work out how tracing allocates that buffer,
but I assume it ends up somewhere in the page allocator. If the page
allocator is about to fail an allocation request and sees that memory
initialization is still ongoing, surely the page allocator should just
wait? That seems to be the most general fix?