Revert "mm: vmstat: use power efficient workingqueues"

This reverts commit 48ff313424.
This commit is contained in:
Ksawlii 2024-12-17 23:31:00 +01:00
parent 0cb16ca2c7
commit dcc7a0ac59

View file

@ -1964,7 +1964,7 @@ static void vmstat_shepherd(struct work_struct *w)
}
put_online_cpus();
queue_delayed_work(system_power_efficient_wq, &shepherd,
schedule_delayed_work(&shepherd,
round_jiffies_relative(sysctl_stat_interval));
}
@ -1976,7 +1976,7 @@ static void __init start_shepherd_timer(void)
INIT_DEFERRABLE_WORK(per_cpu_ptr(&vmstat_work, cpu),
vmstat_update);
queue_delayed_work(system_power_efficient_wq, &shepherd,
schedule_delayed_work(&shepherd,
round_jiffies_relative(sysctl_stat_interval));
}