From: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
To: Chuyi Zhou <zhouchuyi@bytedance.com>
Cc: tglx@linutronix.de, mingo@redhat.com, luto@kernel.org,
peterz@infradead.org, paulmck@kernel.org, muchun.song@linux.dev,
bp@alien8.de, dave.hansen@linux.intel.com, pbonzini@redhat.com,
clrkwllms@kernel.org, rostedt@goodmis.org, nadav.amit@gmail.com,
linux-kernel@vger.kernel.org
Subject: Re: [RESEND PATCH v5 04/12] smp: Use task-local IPI cpumask in smp_call_function_many_cond()
Date: Fri, 22 May 2026 09:22:11 +0200 [thread overview]
Message-ID: <20260522072211.0Vc7V0UB@linutronix.de> (raw)
In-Reply-To: <6b4ff464-8109-4565-859b-f51d70dced51@bytedance.com>
On 2026-05-22 00:00:25 [+0800], Chuyi Zhou wrote:
> On 2026-05-21 11:26 p.m., Sebastian Andrzej Siewior wrote:
> > On 2026-05-13 20:45:16 [+0800], Chuyi Zhou wrote:
> >> diff --git a/kernel/smp.c b/kernel/smp.c
> >> index 9e9dab3b0d51..630c8e5a635d 100644
> >> --- a/kernel/smp.c
> >> +++ b/kernel/smp.c
> >> @@ -811,11 +849,18 @@ static void smp_call_function_many_cond(const struct cpumask *mask,
> >> int cpu, last_cpu, this_cpu = smp_processor_id();
> >> struct call_function_data *cfd;
> >> bool wait = scf_flags & SCF_WAIT;
> >> + struct cpumask *cpumask, *task_mask;
> >> + bool preemptible_wait;
> >> int nr_cpus = 0;
> >> bool run_remote = false;
> >>
> >> lockdep_assert_preemption_disabled();
> >>
> >> + task_mask = smp_task_ipi_mask(current);
> >> + preemptible_wait = task_mask;
> >> + cfd = this_cpu_ptr(&cfd_data);
> >> + cpumask = preemptible_wait ? task_mask : cfd->cpumask;
> >
> > Is this a porting artifact? preemptible_wait is a bool while task_mask
> > is a pointer which is always != NULL.
> >
>
> Not exactly. The NULL fallback is intentional: smp_task_ipi_mask()
> returns NULL for !CONFIG_PREEMPTION, and init_task may also not have an
> allocated ipi_mask_ptr in the non-inlined case.
Okay, but please don't assign a cpumask to a bool and having one to
guess all that behind it. Something like
cfd = this_cpu_ptr(&cfd_data);
task_mask = smp_task_ipi_mask(current);
if (task_mask)
cpumask = task_mask;
else
cpumask = cfd->cpumask;
would make it probably obvious. You probably need a bool later on to
check if you use task's mask and can open preemption while waiting. Hmm.
Let me continue…
> But you are right that the name is confusing in this preparatory patch.
> Here it only means "task-local cpumask is available", not that the wait is
> actually preemptible. I will drop this bool in this patch, and keep
> the real preemptible wait condition in the later patch as:
>
> preemptible_wait = task_mask && preemptible();
There is a lockdep_assert_preemption_disabled() so that preemptible()
must evaluate false.
Sebastian
next prev parent reply other threads:[~2026-05-22 7:22 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-13 12:45 [RESEND PATCH v5 00/12] Allow preemption during IPI completion waiting to improve real-time performance Chuyi Zhou
2026-05-13 12:45 ` [RESEND PATCH v5 01/12] smp: Disable preemption explicitly in __csd_lock_wait Chuyi Zhou
2026-05-13 12:45 ` [RESEND PATCH v5 02/12] smp: Enable preemption early in smp_call_function_single Chuyi Zhou
2026-05-13 12:45 ` [RESEND PATCH v5 03/12] smp: Refactor remote CPU selection in smp_call_function_any() Chuyi Zhou
2026-05-13 12:45 ` [RESEND PATCH v5 04/12] smp: Use task-local IPI cpumask in smp_call_function_many_cond() Chuyi Zhou
2026-05-21 15:26 ` Sebastian Andrzej Siewior
2026-05-21 16:00 ` Chuyi Zhou
2026-05-22 7:22 ` Sebastian Andrzej Siewior [this message]
2026-05-13 12:45 ` [RESEND PATCH v5 05/12] smp: Alloc percpu csd data in smpcfd_prepare_cpu() only once Chuyi Zhou
2026-05-13 12:45 ` [RESEND PATCH v5 06/12] smp: Enable preemption early in smp_call_function_many_cond Chuyi Zhou
2026-05-22 10:08 ` Sebastian Andrzej Siewior
2026-05-22 15:16 ` Chuyi Zhou
2026-05-13 12:45 ` [RESEND PATCH v5 07/12] smp: Remove preempt_disable from smp_call_function Chuyi Zhou
2026-05-13 12:45 ` [RESEND PATCH v5 08/12] smp: Remove preempt_disable from on_each_cpu_cond_mask Chuyi Zhou
2026-05-13 12:45 ` [RESEND PATCH v5 09/12] scftorture: Remove preempt_disable in scftorture_invoke_one Chuyi Zhou
2026-05-13 12:45 ` [RESEND PATCH v5 10/12] x86/mm: Move flush_tlb_info back to the stack Chuyi Zhou
2026-05-13 12:45 ` [RESEND PATCH v5 11/12] x86/mm: Enable preemption during native_flush_tlb_multi Chuyi Zhou
2026-05-13 12:45 ` [RESEND PATCH v5 12/12] x86/mm: Enable preemption during flush_tlb_kernel_range Chuyi Zhou
2026-05-22 10:48 ` Sebastian Andrzej Siewior
2026-05-26 3:25 ` Chuyi Zhou
2026-05-20 12:44 ` [RESEND PATCH v5 00/12] Allow preemption during IPI completion waiting to improve real-time performance Chuyi Zhou
2026-05-22 10:57 ` Sebastian Andrzej Siewior
2026-05-22 14:11 ` Steven Rostedt
2026-05-22 14:45 ` Sebastian Andrzej Siewior
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=20260522072211.0Vc7V0UB@linutronix.de \
--to=bigeasy@linutronix.de \
--cc=bp@alien8.de \
--cc=clrkwllms@kernel.org \
--cc=dave.hansen@linux.intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=luto@kernel.org \
--cc=mingo@redhat.com \
--cc=muchun.song@linux.dev \
--cc=nadav.amit@gmail.com \
--cc=paulmck@kernel.org \
--cc=pbonzini@redhat.com \
--cc=peterz@infradead.org \
--cc=rostedt@goodmis.org \
--cc=tglx@linutronix.de \
--cc=zhouchuyi@bytedance.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
all inboxes | Powered by JetHome®