From: Andrew Morton <akpm@linux-foundation.org>
To: Huangzhaoyang <huangzhaoyang@gmail.com>
Cc: Zhaoyang Huang <zhaoyang.huang@unisoc.com>,
linux-mm@kvack.org, linux-kernel@vger.kernel.org,
linux-cachefs@redhat.com, David Howells <dhowells@redhat.com>
Subject: Re: [PATCH] mm: mask DIRECT_RECLAIM in kswapd
Date: Mon, 6 Dec 2021 17:23:40 -0800 [thread overview]
Message-ID: <20211206172340.fded3873aed7e853b54ab276@linux-foundation.org> (raw)
In-Reply-To: <1638760762-27239-1-git-send-email-huangzhaoyang@gmail.com>
On Mon, 6 Dec 2021 11:19:22 +0800 Huangzhaoyang <huangzhaoyang@gmail.com> wrote:
> From: Zhaoyang Huang <zhaoyang.huang@unisoc.com>
>
> As the eg bellowing, using GFP_KERNEL could confuse the registered .releasepage
> or .shrinker functions when called in kswapd and have them acting wrongly.Mask
> __GFP_DIRECT_RECLAIM in kswapd.
>
> eg,
> kswapd
> shrink_page_list
> try_to_release_page
> __fscache_maybe_release_page
> ...
> if (!(gfp & __GFP_DIRECT_RECLAIM) || !(gfp & __GFP_FS)) {
> fscache_stat(&fscache_n_store_vmscan_busy);
> return false;
> }
Well, we have thus far been permitting kswapd's memory allocations to
enter direct reclaim. Forbidding that kernel-wide might be the right
thing to do, or might not be. But disabling it kernel-wide because of
a peculiar hack in fscache is not good justification.
> --- a/mm/vmscan.c
> +++ b/mm/vmscan.c
> @@ -4083,7 +4083,7 @@ static int balance_pgdat(pg_data_t *pgdat, int order, int highest_zoneidx)
> bool boosted;
> struct zone *zone;
> struct scan_control sc = {
> - .gfp_mask = GFP_KERNEL,
> + .gfp_mask = GFP_KERNEL & ~__GFP_DIRECT_RECLAIM,
> .order = order,
> .may_unmap = 1,
> };
Maybe hack the hack like this?
--- a/fs/fscache/page.c~a
+++ a/fs/fscache/page.c
@@ -126,8 +126,10 @@ page_busy:
* sleeping on memory allocation, so we may need to impose a timeout
* too. */
if (!(gfp & __GFP_DIRECT_RECLAIM) || !(gfp & __GFP_FS)) {
- fscache_stat(&fscache_n_store_vmscan_busy);
- return false;
+ if (!current_is_kswapd()) {
+ fscache_stat(&fscache_n_store_vmscan_busy);
+ return false;
+ }
}
fscache_stat(&fscache_n_store_vmscan_wait);
_
But please, do cc the fscache mailing list and maintainer when mucking
with these things.
next prev parent reply other threads:[~2021-12-07 1:24 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-12-06 3:19 Huangzhaoyang
2021-12-07 1:23 ` Andrew Morton [this message]
2021-12-07 2:07 ` Zhaoyang Huang
2021-12-08 9:40 ` David Howells
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=20211206172340.fded3873aed7e853b54ab276@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=dhowells@redhat.com \
--cc=huangzhaoyang@gmail.com \
--cc=linux-cachefs@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=zhaoyang.huang@unisoc.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