[PATCH 3/9] PM: suspend_block: Abort task freezing if a suspend_blocker is active.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



If a suspend_blocker is active, suspend will fail anyway. Sincetry_to_freeze_tasks can take up to 20 seconds to complete or fail, abortingas soon as someone blocks suspend (e.g. from an interrupt handler) improvesthe worst case wakeup latency.
On an older kernel where task freezing could fail for processes attachedto a debugger, this fixed a problem where the device sometimes hung for20 seconds before the screen turned on.
Signed-off-by: Arve Hjønnevåg <arve@xxxxxxxxxxx>--- kernel/power/process.c |   20 ++++++++++++++++---- 1 files changed, 16 insertions(+), 4 deletions(-)
diff --git a/kernel/power/process.c b/kernel/power/process.cindex ca63401..8c7c323 100644--- a/kernel/power/process.c+++ b/kernel/power/process.c@@ -13,6 +13,7 @@ #include <linux/module.h> #include <linux/syscalls.h> #include <linux/freezer.h>+#include <linux/suspend_blocker.h>  /*   * Timeout for stopping processes@@ -36,6 +37,7 @@ static int try_to_freeze_tasks(bool sig_only) 	struct timeval start, end; 	u64 elapsed_csecs64; 	unsigned int elapsed_csecs;+	bool wakeup = false;  	do_gettimeofday(&start); @@ -62,6 +64,10 @@ static int try_to_freeze_tasks(bool sig_only) 		} while_each_thread(g, p); 		read_unlock(&tasklist_lock); 		yield();			/* Yield is okay here */+		if (todo && suspend_is_blocked()) {+			wakeup = true;+			break;+		} 		if (time_after(jiffies, end_time)) 			break; 	} while (todo);@@ -78,10 +84,16 @@ static int try_to_freeze_tasks(bool sig_only) 		 * but it cleans up leftover PF_FREEZE requests. 		 */ 		printk("\n");-		printk(KERN_ERR "Freezing of tasks failed after %d.%02d seconds "-				"(%d tasks refusing to freeze):\n",-				elapsed_csecs / 100, elapsed_csecs % 100, todo);-		show_state();+		if (wakeup) {+			printk(KERN_ERR "Freezing of %s aborted\n",+					sig_only ? "user space " : "tasks ");+		} else {+			printk(KERN_ERR+			       "Freezing of tasks failed after %d.%02d seconds "+			       "(%d tasks refusing to freeze):\n",+			       elapsed_csecs / 100, elapsed_csecs % 100, todo);+			show_state();+		} 		read_lock(&tasklist_lock); 		do_each_thread(g, p) { 			task_lock(p);-- 1.6.1
_______________________________________________linux-pm mailing listlinux-pm@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx://lists.linux-foundation.org/mailman/listinfo/linux-pm


[Index of Archives]     [Linux ACPI]     [Netdev]     [Ethernet Bridging]     [Linux Wireless]     [CPU Freq]     [Kernel Newbies]     [Fedora Kernel]     [Security]     [Linux for Hams]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux RAID]     [Linux Admin]     [Samba]

  Powered by Linux