From: Gavin Shan <gshan@redhat.com>
To: David Hildenbrand <david@redhat.com>,
Linus Torvalds <torvalds@linux-foundation.org>,
Matthew Wilcox <willy@infradead.org>
Cc: Bagas Sanjaya <bagasdotme@gmail.com>,
Zhenyu Zhang <zhenyzha@redhat.com>,
Linux XFS <linux-xfs@vger.kernel.org>,
Linux Filesystems Development <linux-fsdevel@vger.kernel.org>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
Shaoqin Huang <shahuang@redhat.com>,
Chandan Babu R <chandan.babu@oracle.com>,
"Darrick J. Wong" <djwong@kernel.org>,
Andrew Morton <akpm@linux-foundation.org>
Subject: Re: Endless calls to xas_split_alloc() due to corrupted xarray entry
Date: Tue, 25 Jun 2024 11:10:38 +1000 [thread overview]
Message-ID: <f73a27ca-91d4-4b1c-a2e3-ef07e56bccf3@redhat.com> (raw)
In-Reply-To: <75c1936b-bb08-423d-9a17-0da133cbee01@redhat.com>
On 6/20/24 5:58 AM, David Hildenbrand wrote:
> On 19.06.24 17:48, Linus Torvalds wrote:
>> On Wed, 19 Jun 2024 at 07:31, Matthew Wilcox <willy@infradead.org> wrote:
>>>
>>> Actually, it's 11. We can't split an order-12 folio because we'd have
>>> to allocate two levels of radix tree, and I decided that was too much
>>> work. Also, I didn't know that ARM used order-13 PMD size at the time.
>>>
>>> I think this is the best fix (modulo s/12/11/).
>>
>> Can we use some more descriptive thing than the magic constant 11 that
>> is clearly very subtle.
>>
>> Is it "XA_CHUNK_SHIFT * 2 - 1"
>
> That's my best guess as well :)
>
>>
>> IOW, something like
>>
>> #define MAX_XAS_ORDER (XA_CHUNK_SHIFT * 2 - 1)
>> #define MAX_PAGECACHE_ORDER min(HPAGE_PMD_ORDER,12)
>>
>> except for the non-TRANSPARENT_HUGEPAGE case where it currently does
>>
>> #define MAX_PAGECACHE_ORDER 8
>>
>> and I assume that "8" is just "random round value, smaller than 11"?
>
> Yes, that matches my understanding.
>
> Maybe to be safe for !THP as well, something ike:
>
> +++ b/include/linux/pagemap.h
> @@ -354,11 +354,18 @@ static inline void mapping_set_gfp_mask(struct address_space *m, gfp_t mask)
> * a good order (that's 1MB if you're using 4kB pages)
> */
> #ifdef CONFIG_TRANSPARENT_HUGEPAGE
> -#define MAX_PAGECACHE_ORDER HPAGE_PMD_ORDER
> +#define WANTED_MAX_PAGECACHE_ORDER HPAGE_PMD_ORDER
> #else
> -#define MAX_PAGECACHE_ORDER 8
> +#define WANTED_MAX_PAGECACHE_ORDER 8
> #endif
>
> +/*
> + * xas_split_alloc() does not support arbitrary orders yet. This implies no
> + * 512MB THP on arm64 with 64k.
> + */
> +#define MAX_XAS_ORDER (XA_CHUNK_SHIFT * 2 - 1)
> +#define MAX_PAGECACHE_ORDER min(MAX_XAS_ORDER, WANTED_MAX_PAGECACHE_ORDER)
> +
> /**
> * mapping_set_large_folios() - Indicate the file supports large folios.
> * @mapping: The file.
Thanks David. I'm checking if shmem needs the similar limitation and test patches.
I will post them for review once they're ready.
Thanks,
Gavin
next prev parent reply other threads:[~2024-06-25 1:10 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CAJFLiB+J4mKGDOppp=1moMe2aNqeJhM9F2cD4KPTXoM6nzb5RA@mail.gmail.com>
[not found] ` <ZRFbIJH47RkQuDid@debian.me>
2023-09-25 15:12 ` Endless calls to xas_split_alloc() due to corrupted xarray entry Darrick J. Wong
2023-09-26 7:49 ` Zhenyu Zhang
2023-09-29 10:11 ` Gavin Shan
2023-09-29 19:17 ` Matthew Wilcox
2023-09-30 2:12 ` Gavin Shan
2024-06-19 9:45 ` David Hildenbrand
2024-06-19 14:31 ` Matthew Wilcox
2024-06-19 15:48 ` Linus Torvalds
2024-06-19 19:58 ` David Hildenbrand
2024-06-25 1:10 ` Gavin Shan [this message]
2024-06-19 20:50 ` Matthew Wilcox
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=f73a27ca-91d4-4b1c-a2e3-ef07e56bccf3@redhat.com \
--to=gshan@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=bagasdotme@gmail.com \
--cc=chandan.babu@oracle.com \
--cc=david@redhat.com \
--cc=djwong@kernel.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-xfs@vger.kernel.org \
--cc=shahuang@redhat.com \
--cc=torvalds@linux-foundation.org \
--cc=willy@infradead.org \
--cc=zhenyzha@redhat.com \
/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;
as well as URLs for NNTP newsgroup(s).