public inbox for linux-pm@vger.kernel.org
 help / color / mirror / Atom feed
* [RFC PATCH] freezer: allow killing of frozen tasks
@ 2013-08-20 11:20 Bartlomiej Zolnierkiewicz
  2013-08-20 12:23 ` Rafael J. Wysocki
  0 siblings, 1 reply; 11+ messages in thread
From: Bartlomiej Zolnierkiewicz @ 2013-08-20 11:20 UTC (permalink / raw)
  To: Pavel Machek; +Cc: Rafael J. Wysocki, linux-pm, Kyungmin Park

Change __refrigerator() to allow SIGKILL signal handling during
the frozen state (by setting task to a TASK_KILLABLE state instead
of TASK_UNINTERRUPTIBLE one before entering sleep) and make tasks
leave __refrigerator() upon receiving such signal.

These changes allow frozen tasks to be killed immediately without
the need to thaw them first.

Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
 kernel/freezer.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/kernel/freezer.c b/kernel/freezer.c
index b462fa1..0c05a7a 100644
--- a/kernel/freezer.c
+++ b/kernel/freezer.c
@@ -57,12 +57,13 @@ bool __refrigerator(bool check_kthr_stop)
 	pr_debug("%s entered refrigerator\n", current->comm);
 
 	for (;;) {
-		set_current_state(TASK_UNINTERRUPTIBLE);
+		set_current_state(TASK_KILLABLE);
 
 		spin_lock_irq(&freezer_lock);
 		current->flags |= PF_FROZEN;
 		if (!freezing(current) ||
-		    (check_kthr_stop && kthread_should_stop()))
+		    (check_kthr_stop && kthread_should_stop()) ||
+		    fatal_signal_pending(current))
 			current->flags &= ~PF_FROZEN;
 		spin_unlock_irq(&freezer_lock);
 
-- 
1.8.2.3



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

end of thread, other threads:[~2013-09-26  1:46 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-20 11:20 [RFC PATCH] freezer: allow killing of frozen tasks Bartlomiej Zolnierkiewicz
2013-08-20 12:23 ` Rafael J. Wysocki
2013-08-20 12:18   ` Tejun Heo
2013-08-20 12:30     ` Rafael J. Wysocki
2013-08-20 12:22       ` Tejun Heo
2013-08-20 12:34         ` Rafael J. Wysocki
2013-08-20 12:27           ` Tejun Heo
2013-08-20 12:41             ` Rafael J. Wysocki
2013-09-25  5:52               ` Kyungmin Park
2013-09-25  8:07                 ` Rafael J. Wysocki
2013-09-26  1:46                   ` Colin Cross

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