Skip to content

Commit e98eac6

Browse files
committed
cpu/hotplug: Ignore pm_wakeup_pending() for disable_nonboot_cpus()
A recent change to freeze_secondary_cpus() which added an early abort if a wakeup is pending missed the fact that the function is also invoked for shutdown, reboot and kexec via disable_nonboot_cpus(). In case of disable_nonboot_cpus() the wakeup event needs to be ignored as the purpose is to terminate the currently running kernel. Add a 'suspend' argument which is only set when the freeze is in context of a suspend operation. If not set then an eventually pending wakeup event is ignored. Fixes: a66d955 ("cpu/hotplug: Abort disabling secondary CPUs if wakeup is pending") Reported-by: Boqun Feng <[email protected]> Signed-off-by: Thomas Gleixner <[email protected]> Cc: Pavankumar Kondeti <[email protected]> Cc: [email protected] Link: https://lkml.kernel.org/r/[email protected]
1 parent 33c3736 commit e98eac6

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

include/linux/cpu.h

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,12 +144,18 @@ static inline void get_online_cpus(void) { cpus_read_lock(); }
144144
static inline void put_online_cpus(void) { cpus_read_unlock(); }
145145

146146
#ifdef CONFIG_PM_SLEEP_SMP
147-
extern int freeze_secondary_cpus(int primary);
147+
int __freeze_secondary_cpus(int primary, bool suspend);
148+
static inline int freeze_secondary_cpus(int primary)
149+
{
150+
return __freeze_secondary_cpus(primary, true);
151+
}
152+
148153
static inline int disable_nonboot_cpus(void)
149154
{
150-
return freeze_secondary_cpus(0);
155+
return __freeze_secondary_cpus(0, false);
151156
}
152-
extern void enable_nonboot_cpus(void);
157+
158+
void enable_nonboot_cpus(void);
153159

154160
static inline int suspend_disable_secondary_cpus(void)
155161
{

kernel/cpu.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1327,7 +1327,7 @@ void bringup_nonboot_cpus(unsigned int setup_max_cpus)
13271327
#ifdef CONFIG_PM_SLEEP_SMP
13281328
static cpumask_var_t frozen_cpus;
13291329

1330-
int freeze_secondary_cpus(int primary)
1330+
int __freeze_secondary_cpus(int primary, bool suspend)
13311331
{
13321332
int cpu, error = 0;
13331333

@@ -1352,7 +1352,7 @@ int freeze_secondary_cpus(int primary)
13521352
if (cpu == primary)
13531353
continue;
13541354

1355-
if (pm_wakeup_pending()) {
1355+
if (suspend && pm_wakeup_pending()) {
13561356
pr_info("Wakeup pending. Abort CPU freeze\n");
13571357
error = -EBUSY;
13581358
break;

0 commit comments

Comments
 (0)