We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 920a4a7 commit f9c287bCopy full SHA for f9c287b
arch/x86/kernel/cpu/mcheck/mce.c
@@ -1309,7 +1309,7 @@ static void __restart_timer(struct timer_list *t, unsigned long interval)
1309
1310
if (timer_pending(t)) {
1311
if (time_before(when, t->expires))
1312
- mod_timer_pinned(t, when);
+ mod_timer(t, when);
1313
} else {
1314
t->expires = round_jiffies(when);
1315
add_timer_on(t, smp_processor_id());
@@ -1735,7 +1735,7 @@ static void __mcheck_cpu_init_timer(void)
1735
struct timer_list *t = this_cpu_ptr(&mce_timer);
1736
unsigned int cpu = smp_processor_id();
1737
1738
- setup_timer(t, mce_timer_fn, cpu);
+ setup_pinned_timer(t, mce_timer_fn, cpu);
1739
mce_start_timer(cpu, t);
1740
}
1741
0 commit comments