The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH] timers: Clear pending_map on CPU hotplug
@ 2026-08-23 11:50 Liang Hao
  2026-08-24 15:21 ` Liang Hao
  0 siblings, 1 reply; 2+ messages in thread
From: Liang Hao @ 2026-08-23 11:50 UTC (permalink / raw)
  To: Anna-Maria Behnsen, Frederic Weisbecker, Thomas Gleixner
  Cc: linux-kernel, Liang Hao

CPU hotplug migration leaves pending_map bits set on the outgoing CPU
while its wheel vectors are empty. After re-online, a later next_expiry
recalc can treat those empty buckets as pending and temporarily pull
next_expiry forward until collect drains the bits.

Clear pending_map under the base lock after migration in
timers_dead_cpu(), and in timers_prepare_cpu() for a full base reinit.

Signed-off-by: Liang Hao <haohlliang@gmail.com>
---
 kernel/time/timer.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/kernel/time/timer.c b/kernel/time/timer.c
index ae9abf14688e..e550489c73b8 100644
--- a/kernel/time/timer.c
+++ b/kernel/time/timer.c
@@ -44,6 +44,7 @@
 #include <linux/compat.h>
 #include <linux/random.h>
 #include <linux/sysctl.h>
+#include <linux/bitmap.h>
 
 #include <linux/uaccess.h>
 #include <asm/unistd.h>
@@ -2509,6 +2510,7 @@ int timers_prepare_cpu(unsigned int cpu)
 		base->next_expiry_recalc = false;
 		base->timers_pending = false;
 		base->is_idle = false;
+		bitmap_zero(base->pending_map, WHEEL_SIZE);
 	}
 	return 0;
 }
@@ -2541,6 +2543,7 @@ int timers_dead_cpu(unsigned int cpu)
 		for (i = 0; i < WHEEL_SIZE; i++)
 			migrate_timer_list(new_base, old_base->vectors + i);
 
+		bitmap_zero(old_base->pending_map, WHEEL_SIZE);
 		raw_spin_unlock(&old_base->lock);
 		raw_spin_unlock_irq(&new_base->lock);
 		put_cpu_ptr(&timer_bases);
-- 
2.50.1 (Apple Git-155)


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] timers: Clear pending_map on CPU hotplug
  2026-08-23 11:50 [PATCH] timers: Clear pending_map on CPU hotplug Liang Hao
@ 2026-08-24 15:21 ` Liang Hao
  0 siblings, 0 replies; 2+ messages in thread
From: Liang Hao @ 2026-08-24 15:21 UTC (permalink / raw)
  To: Anna-Maria Behnsen, Frederic Weisbecker, Thomas Gleixner; +Cc: linux-kernel

Hi,

Additional measurements on a local arm64 Android board.

Method (two sessions per build):
  5 runs per session, 5 offline/online pairs per run.

Per pair:
  taskset 0x8 sh -c 'n=0; while [ $n -lt 100 ]; do sleep 0.01; n=$((n+1)); done' &
  sleep 0.5
  echo 0 > /sys/devices/system/cpu/cpu3/online
  echo 1 > /sys/devices/system/cpu/cpu3/online
  wait
  # then the same sleep loop again

Temporary debug dmesg counts per run:
  empty_bucket  - collect_expired_timers() saw pending_map bit set
                  with an empty hlist (next_expiry had been pulled to
                  a stale empty bucket after re-online)
  stale_pending - timers_dead_cpu() saw non-empty pending_map after
                  migrate (same probe on both builds; Build A then
                  clears, Build B does not)

Build A: clear pending_map after migrate
Build B: do not clear

Build A session 1 / 2 (empty_bucket, stale_pending):
  0,6  0,6  0,6  0,6  0,5
  0,7  0,5  0,5  0,5  0,5

Build B session 1 / 2:
  33,10  18,10  10,10  12,10  6,10
  32,10  14,10  17,10  13,10  10,10

stale_pending > 0 on both builds is expected: migrate leaves bits set
while vectors are empty. Build A clears them; Build B leaves them.
The discriminator is empty_bucket: without clearing it is > 0 every
run; with clearing it stays 0.

Thanks,
Liang Hao

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-08-24 15:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-23 11:50 [PATCH] timers: Clear pending_map on CPU hotplug Liang Hao
2026-08-24 15:21 ` Liang Hao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox