mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Khazhismel Kumykov <khazhy@chromium.org>
To: Andrew Morton <akpm@linux-foundation.org>,
	Michal Hocko <mhocko@suse.com>,
	Vlastimil Babka <vbabka@kernel.org>,
	Christoph Lameter <cl@gentwo.org>, Tejun Heo <tj@kernel.org>,
	Dennis Zhou <dennis@kernel.org>
Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org,
	Khazhismel Kumykov <khazhy@google.com>
Subject: [PATCH] mm/percpu: avoid IO dependency in alloc_percpu
Date: Mon, 15 Jun 2026 18:22:36 -0700	[thread overview]
Message-ID: <20260616012236.3799518-1-khazhy@google.com> (raw)

percpu_alloc users within noio context may block on other percpu_alloc
users doing IO due to the shared pcpu_alloc_mutex. pcpu_balance_workfn
already grabs under noio context - update remaining holders to also run
under noio.

Lockdep reported this as a circular locking dependency, with one caller
having entered fs_reclaim holding pcpu_alloc_mutex, and the second
caller (elevator init) grabbing pcpu_alloc_mutex in noio context.

Fixes: 9a5b183941b5 ("mm, percpu: do not consider sleepable allocations atomic")

Signed-off-by: Khazhismel Kumykov <khazhy@google.com>
---
 mm/percpu.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/mm/percpu.c b/mm/percpu.c
index b0676b8054ed..50057403ae79 100644
--- a/mm/percpu.c
+++ b/mm/percpu.c
@@ -1749,8 +1749,13 @@ void __percpu *pcpu_alloc_noprof(size_t size, size_t align, bool reserved,
 	size_t bits, bit_align;
 
 	gfp = current_gfp_context(gfp);
-	/* whitelisted flags that can be passed to the backing allocators */
-	pcpu_gfp = gfp & (GFP_KERNEL | __GFP_NORETRY | __GFP_NOWARN);
+	/*
+	 * whitelisted flags that can be passed to the backing allocators.
+	 *
+	 * Allocations must be GFP_NOIO, else users in noio/nofs contexts may
+	 * form dependency through pcpu_alloc_mutex
+	 */
+	pcpu_gfp = gfp & (GFP_NOIO | __GFP_NORETRY | __GFP_NOWARN);
 	is_atomic = !gfpflags_allow_blocking(gfp);
 	do_warn = !(gfp & __GFP_NOWARN);
 
-- 
2.54.0.1189.g8c84645362-goog


             reply	other threads:[~2026-06-16  1:23 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-16  1:22 Khazhismel Kumykov [this message]
2026-06-16  2:08 ` Khazhy Kumykov
2026-06-16  5:53   ` Vlastimil Babka (SUSE)

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=20260616012236.3799518-1-khazhy@google.com \
    --to=khazhy@chromium.org \
    --cc=akpm@linux-foundation.org \
    --cc=cl@gentwo.org \
    --cc=dennis@kernel.org \
    --cc=khazhy@google.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=mhocko@suse.com \
    --cc=tj@kernel.org \
    --cc=vbabka@kernel.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

all inboxes | Powered by JetHome®