linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Sidhartha Kumar <sidhartha.kumar@oracle.com>
To: "Matthew Wilcox (Oracle)" <willy@infradead.org>,
	Andrew Morton <akpm@linux-foundation.org>
Cc: Mike Kravetz <mike.kravetz@oracle.com>,
	Muchun Song <muchun.song@linux.dev>,
	linux-mm@kvack.org
Subject: Re: [PATCH] hugetlb: Remove PageHeadHuge()
Date: Mon, 27 Mar 2023 09:48:02 -0700	[thread overview]
Message-ID: <50ddaaeb-f051-bcfa-498d-cf32648fec44@oracle.com> (raw)
In-Reply-To: <20230327151050.1787744-1-willy@infradead.org>

On 3/27/23 8:10 AM, Matthew Wilcox (Oracle) wrote:
> Sidhartha Kumar removed the last caller of PageHeadHuge(), so we can
> now remove it and make folio_test_hugetlb() the real implementation.
> Add kernel-doc for folio_test_hugetlb().
> 
> Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
> ---
>   include/linux/page-flags.h |  7 +------
>   mm/hugetlb.c               | 18 +++++++++++-------
>   2 files changed, 12 insertions(+), 13 deletions(-)
> 
> diff --git a/include/linux/page-flags.h b/include/linux/page-flags.h
> index 6b3e138613e1..88600a94fa91 100644
> --- a/include/linux/page-flags.h
> +++ b/include/linux/page-flags.h
> @@ -811,14 +811,9 @@ static inline void ClearPageCompound(struct page *page)
>   
>   #ifdef CONFIG_HUGETLB_PAGE
>   int PageHuge(struct page *page);
> -int PageHeadHuge(struct page *page);
> -static inline bool folio_test_hugetlb(struct folio *folio)
> -{
> -	return PageHeadHuge(&folio->page);
> -}
> +bool folio_test_hugetlb(struct folio *folio);
>   #else
>   TESTPAGEFLAG_FALSE(Huge, hugetlb)
> -TESTPAGEFLAG_FALSE(HeadHuge, headhuge)
>   #endif
>   
>   #ifdef CONFIG_TRANSPARENT_HUGEPAGE
> diff --git a/mm/hugetlb.c b/mm/hugetlb.c
> index 4dd722c35a7f..ff686074c481 100644
> --- a/mm/hugetlb.c
> +++ b/mm/hugetlb.c
> @@ -2050,19 +2050,23 @@ int PageHuge(struct page *page)
>   }
>   EXPORT_SYMBOL_GPL(PageHuge);
>   
> -/*
> - * PageHeadHuge() only returns true for hugetlbfs head page, but not for
> - * normal or transparent huge pages.
> +/**
> + * folio_test_hugetlb - Determine if the folio belongs to hugetlbfs
> + * @folio: The folio to test.
> + *
> + * Context: Any context.  Caller should have a reference on the folio to
> + * prevent it from being turned into a tail page.
> + * Return: True for hugetlbfs folios, false for anon folios or folios
> + * belonging to other filesystems.
>    */
> -int PageHeadHuge(struct page *page_head)
> +bool folio_test_hugetlb(struct folio *folio)
>   {
> -	struct folio *folio = (struct folio *)page_head;
>   	if (!folio_test_large(folio))
> -		return 0;
> +		return false;
>   
>   	return folio->_folio_dtor == HUGETLB_PAGE_DTOR;
>   }
> -EXPORT_SYMBOL_GPL(PageHeadHuge);
> +EXPORT_SYMBOL_GPL(folio_test_hugetlb);
>   
>   /*
>    * Find and lock address space (mapping) in write mode.
Reviewed-by: Sidhartha Kumar <sidhartha.kumar@oracle.com>


  reply	other threads:[~2023-03-27 16:48 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-27 15:10 Matthew Wilcox (Oracle)
2023-03-27 16:48 ` Sidhartha Kumar [this message]
2023-03-27 18:01 ` Mike Kravetz
2023-03-27 20:51 ` David Hildenbrand
2023-03-28  0:22 ` Muchun Song

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=50ddaaeb-f051-bcfa-498d-cf32648fec44@oracle.com \
    --to=sidhartha.kumar@oracle.com \
    --cc=akpm@linux-foundation.org \
    --cc=linux-mm@kvack.org \
    --cc=mike.kravetz@oracle.com \
    --cc=muchun.song@linux.dev \
    --cc=willy@infradead.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox