From: David Hildenbrand <david@redhat.com>
To: Kefeng Wang <wangkefeng.wang@huawei.com>,
Andrew Morton <akpm@linux-foundation.org>
Cc: Matthew Wilcox <willy@infradead.org>,
Alexander Viro <viro@zeniv.linux.org.uk>,
Sidhartha Kumar <sidhartha.kumar@oracle.com>,
linux-mm@kvack.org
Subject: Re: [PATCH 1/5] mm: remove find_subpage()
Date: Mon, 19 Aug 2024 15:27:17 +0200 [thread overview]
Message-ID: <73d5e928-e06d-416a-9de6-fb2d34da9095@redhat.com> (raw)
In-Reply-To: <646f8a48-820f-40ae-bf96-7d554bf4493a@huawei.com>
On 19.08.24 13:02, Kefeng Wang wrote:
>
>
> On 2024/8/17 17:51, Kefeng Wang wrote:
>> After commit a08c7193e4f1 ("mm/filemap: remove hugetlb special casing
>> in filemap.c"), the find_subpage() should remove hugetlb case as the
>> folio_file_page(), furthermore, we could convert to use folio_file_page()
>> to remove find_subpage().
>
> There are some comments from David to the non-public send(forget to cc
> list),
> the problem of find_subpage() is not described , so adding some here,
>
Thanks!
>
> see commit a08c7193e4f1,
>
> --- a/include/linux/pagemap.h
> +++ b/include/linux/pagemap.h
> @@ -789,9 +789,6 @@ static inline pgoff_t folio_next_index(struct folio
> *folio)
> */
> static inline struct page *folio_file_page(struct folio *folio,
> pgoff_t index)
> {
> - /* HugeTLBfs indexes the page cache in units of hpage_size */
> - if (folio_test_hugetlb(folio))
> - return &folio->page;
> return folio_page(folio, index & (folio_nr_pages(folio) - 1));
> }
>
> It changes the granularity of ->index to the base page size rather than
> the huge page size, so for hugetlb, the special handling(return head
> page) is removed from folio_file_page(), so we need remove special
> hugetlb handling find_subpage() too, maybe this is a bugfix as a
> separate patch.
That's the part I understand. Any caller of folio_file_page() is
expected to be able to deal with a hugetlb tail page after this patch.
Now, your assumption is the callers of find_subpage() are find with a
tail page as well. That's the part I am not sure about, but if you think
all callers are fine, then please spell that out in the patch description.
Something like
"Note that find_subpage() would never return the tail page of a hugetlb
folio, but folio_file_page() will return tail pages. This, however, is
fine because XYZ".
But I am wondering if these functions here even get called for hugetlb
ever ... :)
They only trigger for iov_iter_is_xarray()?
>
> And after removing hugetlb handling in find_subpage(), there is
> another issue about "head + (index & (thp_nr_pages(head) - 1))", for
> hugetlb without sparsemem vmemmap, struct page is not guaranteed to be
> contiguous beyond a section, so we need to use
>
> nth_page(head, (index & (thp_nr_pages(head) - 1))
Agreed. So as soon as we would unlock that code for THP, we would run
into that issue.
>
> and in order to reduce code maintain between folio_file_page() and
> find_subpage(), just use folio_file_page() in find_subpage() to
> fix above two issue.
>
> diff --git a/include/linux/pagemap.h b/include/linux/pagemap.h
> index d9c7edb6422b..e2553e4ac3ef 100644
> --- a/include/linux/pagemap.h
> +++ b/include/linux/pagemap.h
> @@ -866,11 +866,9 @@ static inline bool folio_contains(struct folio
> *folio, pgoff_t index)
> */
> static inline struct page *find_subpage(struct page *head, pgoff_t index)
> {
> - /* HugeTLBfs wants the head page regardless */
> - if (PageHuge(head))
> - return head;
> + struct folio *folio = (struct folio *)head;
>
> - return head + (index & (thp_nr_pages(head) - 1));
> + return folio_file_page(folio);
^ I assume you meant "folio_file_page(folio, index);"
> }
>
> And this will correctly handle head/tail page, correct me if I am wrong.
Right.
Is iov_iter_xarray() one of the things Willy mentioned is scheduled for
removal? Then I agree that looking into removing that part completely
does also sounds reasonable.
--
Cheers,
David / dhildenb
next prev parent reply other threads:[~2024-08-19 13:27 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-17 9:51 [PATCH 0/5] mm: finish three more folio conversion Kefeng Wang
2024-08-17 9:51 ` [PATCH 1/5] mm: remove find_subpage() Kefeng Wang
2024-08-19 11:02 ` Kefeng Wang
2024-08-19 13:27 ` David Hildenbrand [this message]
2024-08-20 8:22 ` Kefeng Wang
2024-08-20 8:23 ` David Hildenbrand
2024-08-20 8:34 ` Kefeng Wang
2024-08-17 9:51 ` [PATCH 2/5] pagemap: use a folio in __readahead_batch() Kefeng Wang
2024-08-17 9:51 ` [PATCH 3/5] mm: remove thp_nr_pages() Kefeng Wang
2024-08-17 9:51 ` [PATCH 4/5] mm: khugepaged: pass a folio for set_huge_pmd() Kefeng Wang
2024-08-17 9:51 ` [PATCH 5/5] mm: remove PageTransHuge() Kefeng Wang
2024-08-18 20:33 ` [PATCH 0/5] mm: finish three more folio conversion Matthew Wilcox
2024-08-19 9:59 ` David Hildenbrand
2024-08-19 11:13 ` Kefeng Wang
2024-08-19 13:20 ` Matthew Wilcox
2024-08-20 8:41 ` Kefeng Wang
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=73d5e928-e06d-416a-9de6-fb2d34da9095@redhat.com \
--to=david@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=linux-mm@kvack.org \
--cc=sidhartha.kumar@oracle.com \
--cc=viro@zeniv.linux.org.uk \
--cc=wangkefeng.wang@huawei.com \
--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