[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAHbLzkp8B8zPSE-jdObqLJ=YxST8=J58FaiHxRq_ESgOG_LjCg@mail.gmail.com>
Date: Fri, 17 Dec 2021 11:06:31 -0800
From: Yang Shi <shy828301@...il.com>
To: David Hildenbrand <david@...hat.com>
Cc: Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
Andrew Morton <akpm@...ux-foundation.org>,
Hugh Dickins <hughd@...gle.com>,
Linus Torvalds <torvalds@...ux-foundation.org>,
David Rientjes <rientjes@...gle.com>,
Shakeel Butt <shakeelb@...gle.com>,
John Hubbard <jhubbard@...dia.com>,
Jason Gunthorpe <jgg@...dia.com>,
Mike Kravetz <mike.kravetz@...cle.com>,
Mike Rapoport <rppt@...ux.ibm.com>,
"Kirill A . Shutemov" <kirill.shutemov@...ux.intel.com>,
Matthew Wilcox <willy@...radead.org>,
Vlastimil Babka <vbabka@...e.cz>, Jann Horn <jannh@...gle.com>,
Michal Hocko <mhocko@...nel.org>,
Nadav Amit <namit@...are.com>, Rik van Riel <riel@...riel.com>,
Roman Gushchin <guro@...com>,
Andrea Arcangeli <aarcange@...hat.com>,
Peter Xu <peterx@...hat.com>,
Donald Dutile <ddutile@...hat.com>,
Christoph Hellwig <hch@....de>,
Oleg Nesterov <oleg@...hat.com>, Jan Kara <jack@...e.cz>,
Linux MM <linux-mm@...ck.org>, linux-kselftest@...r.kernel.org,
linux-doc@...r.kernel.org
Subject: Re: [PATCH v1 02/11] mm: thp: consolidate mapcount logic on THP split
On Fri, Dec 17, 2021 at 3:33 AM David Hildenbrand <david@...hat.com> wrote:
>
> Let's consolidate the mapcount logic to make it easier to understand and
> to prepare for further changes.
>
> Reviewed-by: Peter Xu <peterx@...hat.com>
> Signed-off-by: David Hildenbrand <david@...hat.com>
Reviewed-by: Yang Shi <shy828301@...il.com>
> ---
> mm/huge_memory.c | 18 +++++++++++-------
> 1 file changed, 11 insertions(+), 7 deletions(-)
>
> diff --git a/mm/huge_memory.c b/mm/huge_memory.c
> index e5483347291c..4751d03947da 100644
> --- a/mm/huge_memory.c
> +++ b/mm/huge_memory.c
> @@ -2101,21 +2101,25 @@ static void __split_huge_pmd_locked(struct vm_area_struct *vma, pmd_t *pmd,
> pte = pte_offset_map(&_pmd, addr);
> BUG_ON(!pte_none(*pte));
> set_pte_at(mm, addr, pte, entry);
> - if (!pmd_migration)
> - atomic_inc(&page[i]._mapcount);
> pte_unmap(pte);
> }
>
> if (!pmd_migration) {
> + /* Sub-page mapcount accounting for above small mappings. */
> + int val = 1;
> +
> /*
> * Set PG_double_map before dropping compound_mapcount to avoid
> * false-negative page_mapped().
> + *
> + * The first to set PageDoubleMap() has to increment all
> + * sub-page mapcounts by one.
> */
> - if (compound_mapcount(page) > 1 &&
> - !TestSetPageDoubleMap(page)) {
> - for (i = 0; i < HPAGE_PMD_NR; i++)
> - atomic_inc(&page[i]._mapcount);
> - }
> + if (compound_mapcount(page) > 1 && !TestSetPageDoubleMap(page))
> + val++;
> +
> + for (i = 0; i < HPAGE_PMD_NR; i++)
> + atomic_add(val, &page[i]._mapcount);
>
> lock_page_memcg(page);
> if (atomic_add_negative(-1, compound_mapcount_ptr(page))) {
> --
> 2.31.1
>
Powered by blists - more mailing lists