* FAILED: patch "[PATCH] cpu: Fix broken cmdline "nosmp" and "maxcpus=0"" failed to apply to 6.6-stable tree
@ 2024-07-01 14:28 gregkh
2024-07-06 15:46 ` [PATCH 6.6.y] cpu: Fix broken cmdline "nosmp" and "maxcpus=0" Thomas Gleixner
0 siblings, 1 reply; 3+ messages in thread
From: gregkh @ 2024-07-01 14:28 UTC (permalink / raw)
To: chenhuacai, chenhuacai, tglx; +Cc: stable
The patch below does not apply to the 6.6-stable tree.
If someone wants it applied there, or to any other stable or longterm
tree, then please email the backport, including the original git commit
id to <stable@vger.kernel.org>.
To reproduce the conflict and resubmit, you may use the following commands:
git fetch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/ linux-6.6.y
git checkout FETCH_HEAD
git cherry-pick -x 6ef8eb5125722c241fd60d7b0c872d5c2e5dd4ca
# <resolve conflicts, build, test, etc.>
git commit -s
git send-email --to '<stable@vger.kernel.org>' --in-reply-to '2024070154-legged-throwaway-bd6a@gregkh' --subject-prefix 'PATCH 6.6.y' HEAD^..
Possible dependencies:
6ef8eb512572 ("cpu: Fix broken cmdline "nosmp" and "maxcpus=0"")
thanks,
greg k-h
------------------ original commit in Linus's tree ------------------
From 6ef8eb5125722c241fd60d7b0c872d5c2e5dd4ca Mon Sep 17 00:00:00 2001
From: Huacai Chen <chenhuacai@kernel.org>
Date: Tue, 18 Jun 2024 16:13:36 +0800
Subject: [PATCH] cpu: Fix broken cmdline "nosmp" and "maxcpus=0"
After the rework of "Parallel CPU bringup", the cmdline "nosmp" and
"maxcpus=0" parameters are not working anymore. These parameters set
setup_max_cpus to zero and that's handed to bringup_nonboot_cpus().
The code there does a decrement before checking for zero, which brings it
into the negative space and brings up all CPUs.
Add a zero check at the beginning of the function to prevent this.
[ tglx: Massaged change log ]
Fixes: 18415f33e2ac4ab382 ("cpu/hotplug: Allow "parallel" bringup up to CPUHP_BP_KICK_AP_STATE")
Fixes: 06c6796e0304234da6 ("cpu/hotplug: Fix off by one in cpuhp_bringup_mask()")
Signed-off-by: Huacai Chen <chenhuacai@loongson.cn>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: stable@vger.kernel.org
Link: https://lore.kernel.org/r/20240618081336.3996825-1-chenhuacai@loongson.cn
diff --git a/kernel/cpu.c b/kernel/cpu.c
index 74cfdb66a9bd..3d2bf1d50a0c 100644
--- a/kernel/cpu.c
+++ b/kernel/cpu.c
@@ -1859,6 +1859,9 @@ static inline bool cpuhp_bringup_cpus_parallel(unsigned int ncpus) { return fals
void __init bringup_nonboot_cpus(unsigned int max_cpus)
{
+ if (!max_cpus)
+ return;
+
/* Try parallel bringup optimization if enabled */
if (cpuhp_bringup_cpus_parallel(max_cpus))
return;
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 6.6.y] cpu: Fix broken cmdline "nosmp" and "maxcpus=0"
2024-07-01 14:28 FAILED: patch "[PATCH] cpu: Fix broken cmdline "nosmp" and "maxcpus=0"" failed to apply to 6.6-stable tree gregkh
@ 2024-07-06 15:46 ` Thomas Gleixner
2024-07-08 10:35 ` Greg KH
0 siblings, 1 reply; 3+ messages in thread
From: Thomas Gleixner @ 2024-07-06 15:46 UTC (permalink / raw)
To: gregkh, chenhuacai, chenhuacai; +Cc: stable
From: Huacai Chen <chenhuacai@kernel.org>
commit 6ef8eb5125722c241fd60d7b0c872d5c2e5dd4ca upstream.
After the rework of "Parallel CPU bringup", the cmdline "nosmp" and
"maxcpus=0" parameters are not working anymore. These parameters set
setup_max_cpus to zero and that's handed to bringup_nonboot_cpus().
The code there does a decrement before checking for zero, which brings it
into the negative space and brings up all CPUs.
Add a zero check at the beginning of the function to prevent this.
[ tglx: Massaged change log ]
Fixes: 18415f33e2ac4ab382 ("cpu/hotplug: Allow "parallel" bringup up to CPUHP_BP_KICK_AP_STATE")
Fixes: 06c6796e0304234da6 ("cpu/hotplug: Fix off by one in cpuhp_bringup_mask()")
Signed-off-by: Huacai Chen <chenhuacai@loongson.cn>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: stable@vger.kernel.org
Link: https://lore.kernel.org/r/20240618081336.3996825-1-chenhuacai@loongson.cn
---
kernel/cpu.c | 3 +++
1 file changed, 3 insertions(+)
--- a/kernel/cpu.c
+++ b/kernel/cpu.c
@@ -1907,6 +1907,9 @@ static inline bool cpuhp_bringup_cpus_pa
void __init bringup_nonboot_cpus(unsigned int setup_max_cpus)
{
+ if (!setup_max_cpus)
+ return;
+
/* Try parallel bringup optimization if enabled */
if (cpuhp_bringup_cpus_parallel(setup_max_cpus))
return;
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 6.6.y] cpu: Fix broken cmdline "nosmp" and "maxcpus=0"
2024-07-06 15:46 ` [PATCH 6.6.y] cpu: Fix broken cmdline "nosmp" and "maxcpus=0" Thomas Gleixner
@ 2024-07-08 10:35 ` Greg KH
0 siblings, 0 replies; 3+ messages in thread
From: Greg KH @ 2024-07-08 10:35 UTC (permalink / raw)
To: Thomas Gleixner; +Cc: chenhuacai, chenhuacai, stable
On Sat, Jul 06, 2024 at 05:46:08PM +0200, Thomas Gleixner wrote:
>
> From: Huacai Chen <chenhuacai@kernel.org>
>
> commit 6ef8eb5125722c241fd60d7b0c872d5c2e5dd4ca upstream.
>
> After the rework of "Parallel CPU bringup", the cmdline "nosmp" and
> "maxcpus=0" parameters are not working anymore. These parameters set
> setup_max_cpus to zero and that's handed to bringup_nonboot_cpus().
>
> The code there does a decrement before checking for zero, which brings it
> into the negative space and brings up all CPUs.
>
> Add a zero check at the beginning of the function to prevent this.
>
> [ tglx: Massaged change log ]
>
> Fixes: 18415f33e2ac4ab382 ("cpu/hotplug: Allow "parallel" bringup up to CPUHP_BP_KICK_AP_STATE")
> Fixes: 06c6796e0304234da6 ("cpu/hotplug: Fix off by one in cpuhp_bringup_mask()")
> Signed-off-by: Huacai Chen <chenhuacai@loongson.cn>
> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
> Cc: stable@vger.kernel.org
> Link: https://lore.kernel.org/r/20240618081336.3996825-1-chenhuacai@loongson.cn
> ---
> kernel/cpu.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> --- a/kernel/cpu.c
Now queued up, thanks.
greg k-h
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-07-08 10:35 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-01 14:28 FAILED: patch "[PATCH] cpu: Fix broken cmdline "nosmp" and "maxcpus=0"" failed to apply to 6.6-stable tree gregkh
2024-07-06 15:46 ` [PATCH 6.6.y] cpu: Fix broken cmdline "nosmp" and "maxcpus=0" Thomas Gleixner
2024-07-08 10:35 ` Greg KH
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).