All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/3] mm/sparse: Optimize memmap allocation during sparse_init()
@ 2018-02-22  9:11 ` Baoquan He
  0 siblings, 0 replies; 22+ messages in thread
From: Baoquan He @ 2018-02-22  9:11 UTC (permalink / raw)
  To: linux-kernel, dave.hansen
  Cc: linux-mm, akpm, kirill.shutemov, mhocko, tglx, Baoquan He

This is v2 post. V1 can be found here:
https://www.spinics.net/lists/linux-mm/msg144486.html

In sparse_init(), two temporary pointer arrays, usemap_map and map_map
are allocated with the size of NR_MEM_SECTIONS. They are used to store
each memory section's usemap and mem map if marked as present. In
5-level paging mode, this will cost 512M memory though they will be
released at the end of sparse_init(). System with few memory, like
kdump kernel which usually only has about 256M, will fail to boot
because of allocation failure if CONFIG_X86_5LEVEL=y.

In this patchset, optimize the memmap allocation code to only use
usemap_map and map_map with the size of nr_present_sections. This
makes kdump kernel boot up with normal crashkernel='' setting when
CONFIG_X86_5LEVEL=y.

Baoquan He (3):
  mm/sparse: Add a static variable nr_present_sections
  mm/sparsemem: Defer the ms->section_mem_map clearing
  mm/sparse: Optimize memmap allocation during sparse_init()

 mm/sparse-vmemmap.c |  9 +++++----
 mm/sparse.c         | 54 +++++++++++++++++++++++++++++++++++------------------
 2 files changed, 41 insertions(+), 22 deletions(-)

-- 
2.13.6

^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2018-02-23  2:38 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-22  9:11 [PATCH v2 0/3] mm/sparse: Optimize memmap allocation during sparse_init() Baoquan He
2018-02-22  9:11 ` Baoquan He
2018-02-22  9:11 ` [PATCH v2 1/3] mm/sparse: Add a static variable nr_present_sections Baoquan He
2018-02-22  9:11   ` Baoquan He
2018-02-22 21:24   ` Andrew Morton
2018-02-22 21:24     ` Andrew Morton
2018-02-22 23:56     ` Baoquan He
2018-02-22 23:56       ` Baoquan He
2018-02-22  9:11 ` [PATCH v2 2/3] mm/sparsemem: Defer the ms->section_mem_map clearing Baoquan He
2018-02-22  9:11   ` Baoquan He
2018-02-22  9:11 ` [PATCH v2 3/3] mm/sparse: Optimize memmap allocation during sparse_init() Baoquan He
2018-02-22  9:11   ` Baoquan He
2018-02-22 10:07   ` Pankaj Gupta
2018-02-22 10:07     ` Pankaj Gupta
2018-02-22 10:39     ` Baoquan He
2018-02-22 10:39       ` Baoquan He
2018-02-22 22:22   ` Dave Hansen
2018-02-22 22:22     ` Dave Hansen
2018-02-23  2:38     ` Baoquan He
2018-02-23  2:38       ` Baoquan He
2018-02-22  9:15 ` [PATCH v2 0/3] " Baoquan He
2018-02-22  9:15   ` Baoquan He

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.