On 08/11/20 at 02:43pm, Mike Kravetz wrote:
> Here is a patch to do that.  However, we are optimizing a return path in
> a race condition that we are unlikely to ever hit.  I 'tested' it by 
> allocating
> an 'extra' page and freeing it via this method in alloc_surplus_huge_page.
> 
> From 864c5f8ef4900c95ca3f6f2363a85f3cb25e793e Mon Sep 17 00:00:00 2001
> From: Mike Kravetz <mike.krav...@oracle.com>
> Date: Tue, 11 Aug 2020 12:45:41 -0700
> Subject: [PATCH] hugetlb: optimize race error return in
>  alloc_surplus_huge_page
> 
> The routine alloc_surplus_huge_page() could race with with a pool
> size change.  If this happens, the allocated page may not be needed.
> To free the page, the current code will 'Abuse temporary page to
> workaround the nasty free_huge_page codeflow'.  Instead, directly
> call the low level routine that free_huge_page uses.  This works
> out well because the page is new, we hold the only reference and
> already hold the hugetlb_lock.
> 
> Signed-off-by: Mike Kravetz <mike.krav...@oracle.com>
> ---
>  mm/hugetlb.c | 13 ++++++++-----
>  1 file changed, 8 insertions(+), 5 deletions(-)
> 
> diff --git a/mm/hugetlb.c b/mm/hugetlb.c
> index 590111ea6975..ac89b91fba86 100644
> --- a/mm/hugetlb.c
> +++ b/mm/hugetlb.c
> @@ -1923,14 +1923,17 @@ static struct page *alloc_surplus_huge_page(struct 
> hstate *h, gfp_t gfp_mask,
>       /*
>        * We could have raced with the pool size change.
>        * Double check that and simply deallocate the new page
> -      * if we would end up overcommiting the surpluses. Abuse
> -      * temporary page to workaround the nasty free_huge_page
> -      * codeflow
> +      * if we would end up overcommiting the surpluses.
>        */
>       if (h->surplus_huge_pages >= h->nr_overcommit_huge_pages) {
> -             SetPageHugeTemporary(page);
> +             /*
> +              * Since this page is new, we hold the only reference, and
> +              * we already hold the hugetlb_lock call the low level free
> +              * page routine.  This saves at least a lock roundtrip.
> +              */
> +             (void)put_page_testzero(page); /* don't call destructor */
> +             update_and_free_page(h, page);

Yeah, taking this code change, or keeping the temporary page way as is,
both looks good.

>               spin_unlock(&hugetlb_lock);
> -             put_page(page);
>               return NULL;
>       } else {
>               h->surplus_huge_pages++;

Reply via email to