The patch titled Subject: vmstat-make-vmstat_updater-deferrable-again-and-shut-down-on-idle-fix has been removed from the -mm tree. Its filename was vmstat-make-vmstat_updater-deferrable-again-and-shut-down-on-idle-fix.patch This patch was dropped because it was folded into vmstat-make-vmstat_updater-deferrable-again-and-shut-down-on-idle.patch ------------------------------------------------------ From: Christoph Lameter <cl@xxxxxxxxx> Subject: vmstat-make-vmstat_updater-deferrable-again-and-shut-down-on-idle-fix Hmmm... We got a race condition since quiet_vmstat touches cpu_stat_off which may not be allocated early in the bootup sequence. Causes oopses on boot. Subject: vmstat: quieting vmstat requires a running system Do not do anything unless the system is actually running. Otherwise we may crash on bootup. Signed-off-by: Christoph Lameter <cl@xxxxxxxxx> Cc: Michal Hocko <mhocko@xxxxxxx> Cc: Johannes Weiner <hannes@xxxxxxxxxxx> Cc: Tetsuo Handa <penguin-kernel@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/vmstat.c | 3 +++ 1 file changed, 3 insertions(+) diff -puN mm/vmstat.c~vmstat-make-vmstat_updater-deferrable-again-and-shut-down-on-idle-fix mm/vmstat.c --- a/mm/vmstat.c~vmstat-make-vmstat_updater-deferrable-again-and-shut-down-on-idle-fix +++ a/mm/vmstat.c @@ -1426,6 +1426,9 @@ static void vmstat_update(struct work_st */ void quiet_vmstat(void) { + if (system_state != SYSTEM_RUNNING) + return; + do { if (!cpumask_test_and_set_cpu(smp_processor_id(), cpu_stat_off)) cancel_delayed_work(this_cpu_ptr(&vmstat_work)); _ Patches currently in -mm which might be from cl@xxxxxxxxx are vmstat-make-vmstat_updater-deferrable-again-and-shut-down-on-idle.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html