From: Andrew Morton <akpm@linux-foundation.org>
To: Yin Fengwei <fengwei.yin@intel.com>
Cc: linux-mm@kvack.org, naoya.horiguchi@nec.com,
linmiaohe@huawei.com, willy@infradead.org, shy828301@gmail.com,
aaron.lu@intel.com, tony.luck@intel.com, qiuxu.zhuo@intel.com
Subject: Re: [PATCH v3] mm: release private data before split THP
Date: Fri, 19 Aug 2022 17:45:39 -0700 [thread overview]
Message-ID: <20220819174539.c66a67c3f2cdc5604fcbd244@linux-foundation.org> (raw)
In-Reply-To: <20220810064907.582899-1-fengwei.yin@intel.com>
On Wed, 10 Aug 2022 14:49:07 +0800 Yin Fengwei <fengwei.yin@intel.com> wrote:
> If there is private data attached to THP, the refcount of
> THP will be increased and block the THP split. Release
> private data attached to THP before split it to increase
> the chance of splitting THP successfully.
>
> There was a memory failure issue hit during HW error
> injection testing with 5.18 kernel + xfs as rootfs. Test
> got killed and system reboot was required to re-run the
> test.
>
> The issue was tracked down to THP split failure caused the
> memory failure not being handled. The page dump showed:
>
> [ 1785.433075] page:0000000025f9530b refcount:18 mapcount:0 mapping:000000008162eea7 index:0xa10 pfn:0x2f0200
> [ 1785.443954] head:0000000025f9530b order:4 compound_mapcount:0 compound_pincount:0
> [ 1785.452408] memcg:ff4247f2d28e9000
> [ 1785.456304] aops:xfs_address_space_operations ino:8555182 dentry name:"baseos-filenames.solvx"
> [ 1785.466612] flags: 0x1000000000012036(referenced|uptodate|lru|active|private|head|node=0|zone=2)
> [ 1785.476514] raw: 1000000000012036 ffb9460f8bc07c08 ffb9460f8bc08408 ff4247f22e6299f8
> [ 1785.485268] raw: 0000000000000a10 ff4247f194ade900 00000012ffffffff ff4247f2d28e9000
>
> It was like the error was injected to a large folio for xfs
> with private data attached.
>
> With private data released before split THP, the test case
> could be run successfully many times without reboot system.
I did a bit of editorial work on the changelog. Please check, Note my
addition of "attempt to" to the second sentence.
: If there is private data attached to a THP, the refcount of THP will be
: increased and will prevent the THP from being split. Attempt to release
: any private data attached to the THP before attempting the split to
: increase the chance of splitting successfully.
:
: There was a memory failure issue hit during HW error injection testing
: with 5.18 kernel + xfs as rootfs. The test was killed and a system reboot
: was required to re-run the test.
:
: The issue was tracked down to a THP split failure caused by the memory
: failure not being handled. The page dump showed:
:
: [ 1785.433075] page:0000000025f9530b refcount:18 mapcount:0 mapping:000000008162eea7 index:0xa10 pfn:0x2f0200
: [ 1785.443954] head:0000000025f9530b order:4 compound_mapcount:0 compound_pincount:0
: [ 1785.452408] memcg:ff4247f2d28e9000
: [ 1785.456304] aops:xfs_address_space_operations ino:8555182 dentry name:"baseos-filenames.solvx"
: [ 1785.466612] flags: 0x1000000000012036(referenced|uptodate|lru|active|private|head|node=0|zone=2)
: [ 1785.476514] raw: 1000000000012036 ffb9460f8bc07c08 ffb9460f8bc08408 ff4247f22e6299f8
: [ 1785.485268] raw: 0000000000000a10 ff4247f194ade900 00000012ffffffff ff4247f2d28e9000
:
: It was like the error was injected to a large folio for xfs with private
: data attached.
:
: With private data released before splitting the THP, the test case could
: be run successfully many times without rebooting the system.
> --- a/mm/huge_memory.c
> +++ b/mm/huge_memory.c
>
> ...
>
> @@ -2635,8 +2637,16 @@ int split_huge_page_to_list(struct page *page, struct list_head *list)
> goto out;
> }
>
> - xas_split_alloc(&xas, head, compound_order(head),
> - mapping_gfp_mask(mapping) & GFP_RECLAIM_MASK);
> + gfp = current_gfp_context(mapping_gfp_mask(mapping) &
> + GFP_RECLAIM_MASK);
> +
> + if (folio_test_private(folio) &&
> + !filemap_release_folio(folio, gfp)) {
> + ret = -EBUSY;
> + goto out;
> + }
> +
> + xas_split_alloc(&xas, head, compound_order(head), gfp);
Because I assume we run into the same problem if
filemap_release_folio() fails?
next prev parent reply other threads:[~2022-08-20 0:45 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-10 6:49 Yin Fengwei
2022-08-10 17:09 ` Yang Shi
2022-08-11 7:26 ` Yin Fengwei
2022-08-11 1:54 ` Miaohe Lin
2022-08-11 7:27 ` Yin Fengwei
2022-08-11 8:18 ` Lu, Aaron
2022-08-19 5:04 ` Yin, Fengwei
2022-08-20 0:45 ` Andrew Morton [this message]
2022-08-20 1:48 ` Yin, Fengwei
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=20220819174539.c66a67c3f2cdc5604fcbd244@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=aaron.lu@intel.com \
--cc=fengwei.yin@intel.com \
--cc=linmiaohe@huawei.com \
--cc=linux-mm@kvack.org \
--cc=naoya.horiguchi@nec.com \
--cc=qiuxu.zhuo@intel.com \
--cc=shy828301@gmail.com \
--cc=tony.luck@intel.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