linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: "Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>
To: "Kirill A. Shutemov" <kirill.shutemov@linux.intel.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Andrea Arcangeli <aarcange@redhat.com>
Cc: Mel Gorman <mgorman@techsingularity.net>,
	Hugh Dickins <hughd@google.com>,
	Johannes Weiner <hannes@cmpxchg.org>,
	Dave Hansen <dave.hansen@intel.com>,
	Vlastimil Babka <vbabka@suse.cz>,
	linux-mm@kvack.org
Subject: Re: [PATCH] thp: keep huge zero pinned until tlb flush
Date: Tue, 05 Apr 2016 20:05:06 +0530	[thread overview]
Message-ID: <877fgcxgx1.fsf@linux.vnet.ibm.com> (raw)
In-Reply-To: <1459814247-45614-1-git-send-email-kirill.shutemov@linux.intel.com>

"Kirill A. Shutemov" <kirill.shutemov@linux.intel.com> writes:

> [ text/plain ]
> Andrea has found[1] a race condition on MMU-gather based TLB flush vs
> split_huge_page() or shrinker which frees huge zero under us (patch 1/2
> and 2/2 respectively).
>
> With new THP refcounting, we don't patch 1/2: mmu_gather keeps the page
> page pinned until flush is complete and the pin prevent the page from
> being split under us.
>
> We sill need patch 2/2. This is simplified version of Andrea's patch.
> We don't need fancy encoding.
>
> [1] http://lkml.kernel.org/r/1447938052-22165-1-git-send-email-aarcange@redhat.com

May be we should add the below from the original mail

put_huge_zero_page() because it can actually lead to the almost
immediate freeing of the THP zero page, must be run in the MMU gather
and not before the TLB flush like it is happening right now.


Reviewed-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>


>
> Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
> Reported-by: Andrea Arcangeli <aarcange@redhat.com>
> ---
>  include/linux/huge_mm.h | 1 +
>  mm/huge_memory.c        | 6 +++---
>  mm/swap.c               | 5 +++++
>  3 files changed, 9 insertions(+), 3 deletions(-)
>
> diff --git a/include/linux/huge_mm.h b/include/linux/huge_mm.h
> index 7008623e24b1..8232e0b8a04f 100644
> --- a/include/linux/huge_mm.h
> +++ b/include/linux/huge_mm.h
> @@ -152,6 +152,7 @@ static inline bool is_huge_zero_pmd(pmd_t pmd)
>  }
>
>  struct page *get_huge_zero_page(void);
> +void put_huge_zero_page(void);
>
>  #else /* CONFIG_TRANSPARENT_HUGEPAGE */
>  #define HPAGE_PMD_SHIFT ({ BUILD_BUG(); 0; })
> diff --git a/mm/huge_memory.c b/mm/huge_memory.c
> index 820214137bc5..860c7dec197e 100644
> --- a/mm/huge_memory.c
> +++ b/mm/huge_memory.c
> @@ -235,7 +235,7 @@ retry:
>  	return READ_ONCE(huge_zero_page);
>  }
>
> -static void put_huge_zero_page(void)
> +void put_huge_zero_page(void)
>  {
>  	/*
>  	 * Counter should never go to zero here. Only shrinker can put
> @@ -1715,12 +1715,12 @@ int zap_huge_pmd(struct mmu_gather *tlb, struct vm_area_struct *vma,
>  	if (vma_is_dax(vma)) {
>  		spin_unlock(ptl);
>  		if (is_huge_zero_pmd(orig_pmd))
> -			put_huge_zero_page();
> +			tlb_remove_page(tlb, pmd_page(orig_pmd));
>  	} else if (is_huge_zero_pmd(orig_pmd)) {
>  		pte_free(tlb->mm, pgtable_trans_huge_withdraw(tlb->mm, pmd));
>  		atomic_long_dec(&tlb->mm->nr_ptes);
>  		spin_unlock(ptl);
> -		put_huge_zero_page();
> +		tlb_remove_page(tlb, pmd_page(orig_pmd));
>  	} else {
>  		struct page *page = pmd_page(orig_pmd);
>  		page_remove_rmap(page, true);
> diff --git a/mm/swap.c b/mm/swap.c
> index 09fe5e97714a..11915bd0f047 100644
> --- a/mm/swap.c
> +++ b/mm/swap.c
> @@ -728,6 +728,11 @@ void release_pages(struct page **pages, int nr, bool cold)
>  			zone = NULL;
>  		}
>
> +		if (is_huge_zero_page(page)) {
> +			put_huge_zero_page();
> +			continue;
> +		}
> +
>  		page = compound_head(page);
>  		if (!put_page_testzero(page))
>  			continue;
> -- 
> 2.8.0.rc3

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

      parent reply	other threads:[~2016-04-05 14:35 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-04 23:57 Kirill A. Shutemov
2016-04-05  0:15 ` kbuild test robot
2016-04-05 14:35 ` Aneesh Kumar K.V [this message]

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=877fgcxgx1.fsf@linux.vnet.ibm.com \
    --to=aneesh.kumar@linux.vnet.ibm.com \
    --cc=aarcange@redhat.com \
    --cc=akpm@linux-foundation.org \
    --cc=dave.hansen@intel.com \
    --cc=hannes@cmpxchg.org \
    --cc=hughd@google.com \
    --cc=kirill.shutemov@linux.intel.com \
    --cc=linux-mm@kvack.org \
    --cc=mgorman@techsingularity.net \
    --cc=vbabka@suse.cz \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox