The patch titled Freezer: use __set_current_state in refrigerator has been removed from the -mm tree. Its filename was freezer-use-__set_current_state-in-refrigerator.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Freezer: use __set_current_state in refrigerator From: Rafael J. Wysocki <rjw@xxxxxxx> Use __set_current_state() as appropriate in refrigerator() instead of accessing current->state directly. Signed-off-by: Rafael J. Wysocki <rjw@xxxxxxx> Acked-by: Pavel Machek <pavel@xxxxxx> Cc: Gautham R Shenoy <ego@xxxxxxxxxx> Cc: Oleg Nesterov <oleg@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/power/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/power/process.c~freezer-use-__set_current_state-in-refrigerator kernel/power/process.c --- a/kernel/power/process.c~freezer-use-__set_current_state-in-refrigerator +++ a/kernel/power/process.c @@ -72,7 +72,7 @@ void refrigerator(void) schedule(); } pr_debug("%s left refrigerator\n", current->comm); - current->state = save; + __set_current_state(save); } static void freeze_task(struct task_struct *p) _ Patches currently in -mm which might be from rjw@xxxxxxx are origin.patch acpi-implement-the-set_target-callback-from-pm_ops.patch acpi-add-acpi_pm_device_sleep_state-helper-routine.patch pm-move-definition-of-struct-pm_ops-to-suspendh.patch pm-rename-struct-pm_ops-and-related-things.patch pm-rework-struct-platform_suspend_ops.patch pm-fix-compilation-of-suspend-code-if-config_pm-is-unset.patch pm-make-suspend_ops-static.patch pm-rework-struct-hibernation_ops.patch pm-rename-hibernation_ops-to-platform_hibernation_ops.patch shrink_slab-handle-bad-shrinkers.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