All of lore.kernel.org
 help / color / mirror / Atom feed
From: Muchun Song <songmuchun@bytedance.com>
To: "Singh, Balbir" <bsingharora@gmail.com>
Cc: "Jonathan Corbet" <corbet@lwn.net>,
	"Mike Kravetz" <mike.kravetz@oracle.com>,
	"Thomas Gleixner" <tglx@linutronix.de>,
	"Ingo Molnar" <mingo@redhat.com>,
	bp@alien8.de, x86@kernel.org, hpa@zytor.com,
	dave.hansen@linux.intel.com, luto@kernel.org,
	"Peter Zijlstra" <peterz@infradead.org>,
	"Alexander Viro" <viro@zeniv.linux.org.uk>,
	"Andrew Morton" <akpm@linux-foundation.org>,
	paulmck@kernel.org, mchehab+huawei@kernel.org,
	pawan.kumar.gupta@linux.intel.com,
	"Randy Dunlap" <rdunlap@infradead.org>,
	oneukum@suse.com, anshuman.khandual@arm.com, jroedel@suse.de,
	"Mina Almasry" <almasrymina@google.com>,
	"David Rientjes" <rientjes@google.com>,
	"Matthew Wilcox" <willy@infradead.org>,
	"Oscar Salvador" <osalvador@suse.de>,
	"Michal Hocko" <mhocko@suse.com>,
	"Song Bao Hua (Barry Song)" <song.bao.hua@hisilicon.com>,
	"David Hildenbrand" <david@redhat.com>,
	"HORIGUCHI NAOYA(堀口 直也)" <naoya.horiguchi@nec.com>,
	"Joao Martins" <joao.m.martins@oracle.com>,
	"Xiongchun duan" <duanxiongchun@bytedance.com>,
	linux-doc@vger.kernel.org, LKML <linux-kernel@vger.kernel.org>,
	"Linux Memory Management List" <linux-mm@kvack.org>,
	linux-fsdevel <linux-fsdevel@vger.kernel.org>
Subject: Re: [External] Re: [PATCH v17 0/9] Free some vmemmap pages of HugeTLB page
Date: Thu, 4 Mar 2021 11:36:44 +0800	[thread overview]
Message-ID: <CAMZfGtWeyo8+uWf7oB4ODqpyOw_--K+LdYeJDhdFj+ob0OaoeA@mail.gmail.com> (raw)
In-Reply-To: <e9ef3479-24f1-9304-ee0e-6f06fb457d50@gmail.com>

On Thu, Mar 4, 2021 at 11:14 AM Singh, Balbir <bsingharora@gmail.com> wrote:
>
> On 26/2/21 12:21 am, Muchun Song wrote:
> > Hi all,
> >
> > This patch series will free some vmemmap pages(struct page structures)
> > associated with each hugetlbpage when preallocated to save memory.
> >
> > In order to reduce the difficulty of the first version of code review.
> > From this version, we disable PMD/huge page mapping of vmemmap if this
> > feature was enabled. This accutualy eliminate a bunch of the complex code
> > doing page table manipulation. When this patch series is solid, we cam add
> > the code of vmemmap page table manipulation in the future.
> >
> > The struct page structures (page structs) are used to describe a physical
> > page frame. By default, there is a one-to-one mapping from a page frame to
> > it's corresponding page struct.
> >
> > The HugeTLB pages consist of multiple base page size pages and is supported
> > by many architectures. See hugetlbpage.rst in the Documentation directory
> > for more details. On the x86 architecture, HugeTLB pages of size 2MB and 1GB
> > are currently supported. Since the base page size on x86 is 4KB, a 2MB
> > HugeTLB page consists of 512 base pages and a 1GB HugeTLB page consists of
> > 4096 base pages. For each base page, there is a corresponding page struct.
> >
> > Within the HugeTLB subsystem, only the first 4 page structs are used to
> > contain unique information about a HugeTLB page. HUGETLB_CGROUP_MIN_ORDER
> > provides this upper limit. The only 'useful' information in the remaining
> > page structs is the compound_head field, and this field is the same for all
> > tail pages.
>
> The HUGETLB_CGROUP_MIN_ORDER is only when CGROUP_HUGETLB is enabled, but I guess
> that does not matter

Agree.

>
> >
> > By removing redundant page structs for HugeTLB pages, memory can returned to
> > the buddy allocator for other uses.
> >
> > When the system boot up, every 2M HugeTLB has 512 struct page structs which
> > size is 8 pages(sizeof(struct page) * 512 / PAGE_SIZE).
> >
> >     HugeTLB                  struct pages(8 pages)         page frame(8 pages)
> >  +-----------+ ---virt_to_page---> +-----------+   mapping to   +-----------+
> >  |           |                     |     0     | -------------> |     0     |
> >  |           |                     +-----------+                +-----------+
> >  |           |                     |     1     | -------------> |     1     |
> >  |           |                     +-----------+                +-----------+
> >  |           |                     |     2     | -------------> |     2     |
> >  |           |                     +-----------+                +-----------+
> >  |           |                     |     3     | -------------> |     3     |
> >  |           |                     +-----------+                +-----------+
> >  |           |                     |     4     | -------------> |     4     |
> >  |    2MB    |                     +-----------+                +-----------+
> >  |           |                     |     5     | -------------> |     5     |
> >  |           |                     +-----------+                +-----------+
> >  |           |                     |     6     | -------------> |     6     |
> >  |           |                     +-----------+                +-----------+
> >  |           |                     |     7     | -------------> |     7     |
> >  |           |                     +-----------+                +-----------+
> >  |           |
> >  |           |
> >  |           |
> >  +-----------+
> >
> > The value of page->compound_head is the same for all tail pages. The first
> > page of page structs (page 0) associated with the HugeTLB page contains the 4
> > page structs necessary to describe the HugeTLB. The only use of the remaining
> > pages of page structs (page 1 to page 7) is to point to page->compound_head.
> > Therefore, we can remap pages 2 to 7 to page 1. Only 2 pages of page structs
> > will be used for each HugeTLB page. This will allow us to free the remaining
> > 6 pages to the buddy allocator.
>
> What is page 1 used for? page 0 carries the 4 struct pages needed, does compound_head
> need a full page? IOW, why do we need two full pages -- may be the patches have the
> answer to something I am missing?

Yeah. It really can free 7 pages. But we need some work to support this. Why?

Now for the 2MB HugeTLB page, we only free 6 vmemmap pages. we really can
free 7 vmemmap pages. In this case, we can see 8 of the 512 struct page
structures have been set PG_head flag. If we can adjust compound_head()
slightly and make compound_head() return the real head struct page when
the parameter is the tail struct page but with PG_head flag set.

In order to make the code evolution route clearer. This feature can be
a separate patch (and send it out) after this patchset is solid and applied.

>
> >
> > Here is how things look after remapping.
> >
> >     HugeTLB                  struct pages(8 pages)         page frame(8 pages)
> >  +-----------+ ---virt_to_page---> +-----------+   mapping to   +-----------+
> >  |           |                     |     0     | -------------> |     0     |
> >  |           |                     +-----------+                +-----------+
> >  |           |                     |     1     | -------------> |     1     |
> >  |           |                     +-----------+                +-----------+
> >  |           |                     |     2     | ----------------^ ^ ^ ^ ^ ^
> >  |           |                     +-----------+                   | | | | |
> >  |           |                     |     3     | ------------------+ | | | |
> >  |           |                     +-----------+                     | | | |
> >  |           |                     |     4     | --------------------+ | | |
> >  |    2MB    |                     +-----------+                       | | |
> >  |           |                     |     5     | ----------------------+ | |
> >  |           |                     +-----------+                         | |
> >  |           |                     |     6     | ------------------------+ |
> >  |           |                     +-----------+                           |
> >  |           |                     |     7     | --------------------------+
> >  |           |                     +-----------+
> >  |           |
> >  |           |
> >  |           |
> >  +-----------+
> >
> > When a HugeTLB is freed to the buddy system, we should allocate 6 pages for
> > vmemmap pages and restore the previous mapping relationship.
> >
>
> Can these 6 pages come from the hugeTLB page itself? When you say 6 pages,
> I presume you mean 6 pages of PAGE_SIZE

There was a decent discussion about this in a previous version of the
series starting here:

https://lore.kernel.org/linux-mm/20210126092942.GA10602@linux/

In this thread various other options were suggested and discussed.

Thanks.

>
> > Apart from 2MB HugeTLB page, we also have 1GB HugeTLB page. It is similar
> > to the 2MB HugeTLB page. We also can use this approach to free the vmemmap
> > pages.
> >
> > In this case, for the 1GB HugeTLB page, we can save 4094 pages. This is a
> > very substantial gain. On our server, run some SPDK/QEMU applications which
> > will use 1024GB hugetlbpage. With this feature enabled, we can save ~16GB
> > (1G hugepage)/~12GB (2MB hugepage) memory.
>
> Thanks,
> Balbir Singh
>
>
>
>
>
>
>
>
>
>
>
>
>

  reply	other threads:[~2021-03-04  3:38 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-25 13:21 [PATCH v17 0/9] Free some vmemmap pages of HugeTLB page Muchun Song
2021-02-25 13:21 ` [PATCH v17 1/9] mm: memory_hotplug: factor out bootmem core functions to bootmem_info.c Muchun Song
2021-03-03  2:45   ` Singh, Balbir
2021-03-04  4:26     ` Balbir Singh
2021-03-04  5:50       ` [External] " Muchun Song
2021-02-25 13:21 ` [PATCH v17 2/9] mm: hugetlb: introduce a new config HUGETLB_PAGE_FREE_VMEMMAP Muchun Song
2021-03-04  5:06   ` Balbir Singh
2021-02-25 13:21 ` [PATCH v17 3/9] mm: hugetlb: free the vmemmap pages associated with each HugeTLB page Muchun Song
2021-03-04 23:50   ` Singh, Balbir
2021-03-05  4:41     ` [External] " Muchun Song
2021-03-05  4:41       ` Muchun Song
2021-02-25 13:21 ` [PATCH v17 4/9] mm: hugetlb: alloc " Muchun Song
2021-03-01  5:29   ` Muchun Song
2021-03-01  5:29     ` Muchun Song
2021-03-03  2:03   ` Mike Kravetz
2021-03-03  3:36     ` [External] " Muchun Song
2021-03-05  8:55   ` Balbir Singh
2021-03-05  9:30     ` [External] " Muchun Song
2021-02-25 13:21 ` [PATCH v17 5/9] mm: hugetlb: set the PageHWPoison to the raw error page Muchun Song
2021-03-07  8:18   ` Balbir Singh
2021-03-07  8:39     ` [External] " Muchun Song
2021-02-25 13:21 ` [PATCH v17 6/9] mm: hugetlb: add a kernel parameter hugetlb_free_vmemmap Muchun Song
2021-02-25 13:21 ` [PATCH v17 7/9] mm: hugetlb: introduce nr_free_vmemmap_pages in the struct hstate Muchun Song
2021-02-25 13:21 ` [PATCH v17 8/9] mm: hugetlb: gather discrete indexes of tail page Muchun Song
2021-02-25 13:21 ` [PATCH v17 9/9] mm: hugetlb: optimize the code with the help of the compiler Muchun Song
2021-03-02 12:27 ` [PATCH v17 0/9] Free some vmemmap pages of HugeTLB page Chen Huang
2021-03-04  3:14 ` Singh, Balbir
2021-03-04  3:36   ` Muchun Song [this message]
2021-03-04  4:25     ` [External] " Balbir Singh

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAMZfGtWeyo8+uWf7oB4ODqpyOw_--K+LdYeJDhdFj+ob0OaoeA@mail.gmail.com \
    --to=songmuchun@bytedance.com \
    --cc=akpm@linux-foundation.org \
    --cc=almasrymina@google.com \
    --cc=anshuman.khandual@arm.com \
    --cc=bp@alien8.de \
    --cc=bsingharora@gmail.com \
    --cc=corbet@lwn.net \
    --cc=dave.hansen@linux.intel.com \
    --cc=david@redhat.com \
    --cc=duanxiongchun@bytedance.com \
    --cc=hpa@zytor.com \
    --cc=joao.m.martins@oracle.com \
    --cc=jroedel@suse.de \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=luto@kernel.org \
    --cc=mchehab+huawei@kernel.org \
    --cc=mhocko@suse.com \
    --cc=mike.kravetz@oracle.com \
    --cc=mingo@redhat.com \
    --cc=naoya.horiguchi@nec.com \
    --cc=oneukum@suse.com \
    --cc=osalvador@suse.de \
    --cc=paulmck@kernel.org \
    --cc=pawan.kumar.gupta@linux.intel.com \
    --cc=peterz@infradead.org \
    --cc=rdunlap@infradead.org \
    --cc=rientjes@google.com \
    --cc=song.bao.hua@hisilicon.com \
    --cc=tglx@linutronix.de \
    --cc=viro@zeniv.linux.org.uk \
    --cc=willy@infradead.org \
    --cc=x86@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.