提交 04bf7539 编写于 作者: R Rafael J. Wysocki 提交者: Linus Torvalds

PM: Make warning in suspend_test_finish() less likely to happen

Increase TEST_SUSPEND_SECONDS to 10 so the warning in
suspend_test_finish() doesn't annoy the users of slower systems so much.

Also, make the warning print the suspend-resume cycle time, so that we
know why the warning actually triggered.

Patch prepared during the hacking session at the Kernel Summit in Tokyo.
Signed-off-by: NRafael J. Wysocki <rjw@sisk.pl>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 af2bd9d5
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
* The time it takes is system-specific though, so when we test this * The time it takes is system-specific though, so when we test this
* during system bootup we allow a LOT of time. * during system bootup we allow a LOT of time.
*/ */
#define TEST_SUSPEND_SECONDS 5 #define TEST_SUSPEND_SECONDS 10
static unsigned long suspend_test_start_time; static unsigned long suspend_test_start_time;
...@@ -49,7 +49,8 @@ void suspend_test_finish(const char *label) ...@@ -49,7 +49,8 @@ void suspend_test_finish(const char *label)
* has some performance issues. The stack dump of a WARN_ON * has some performance issues. The stack dump of a WARN_ON
* is more likely to get the right attention than a printk... * is more likely to get the right attention than a printk...
*/ */
WARN(msec > (TEST_SUSPEND_SECONDS * 1000), "Component: %s\n", label); WARN(msec > (TEST_SUSPEND_SECONDS * 1000),
"Component: %s, time: %u\n", label, msec);
} }
/* /*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册