Skip to content

Commit 23016de

Browse files
committed
PM / Suspend: Print wall time at suspend entry and exit
Change-Id: I92f252414c013b018b9a392eae1ee039aa0e89dc Signed-off-by: Todd Poynor <[email protected]>
1 parent 6411d57 commit 23016de

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

kernel/power/suspend.c

+15
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
#include <linux/export.h>
2525
#include <linux/suspend.h>
2626
#include <linux/syscore_ops.h>
27+
#include <linux/rtc.h>
2728
#include <trace/events/power.h>
2829

2930
#include "power.h"
@@ -300,6 +301,18 @@ static int enter_state(suspend_state_t state)
300301
return error;
301302
}
302303

304+
static void pm_suspend_marker(char *annotation)
305+
{
306+
struct timespec ts;
307+
struct rtc_time tm;
308+
309+
getnstimeofday(&ts);
310+
rtc_time_to_tm(ts.tv_sec, &tm);
311+
pr_info("PM: suspend %s %d-%02d-%02d %02d:%02d:%02d.%09lu UTC\n",
312+
annotation, tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday,
313+
tm.tm_hour, tm.tm_min, tm.tm_sec, ts.tv_nsec);
314+
}
315+
303316
/**
304317
* pm_suspend - Externally visible function for suspending the system.
305318
* @state: System sleep state to enter.
@@ -314,13 +327,15 @@ int pm_suspend(suspend_state_t state)
314327
if (state <= PM_SUSPEND_ON || state >= PM_SUSPEND_MAX)
315328
return -EINVAL;
316329

330+
pm_suspend_marker("entry");
317331
error = enter_state(state);
318332
if (error) {
319333
suspend_stats.fail++;
320334
dpm_save_failed_errno(error);
321335
} else {
322336
suspend_stats.success++;
323337
}
338+
pm_suspend_marker("exit");
324339
return error;
325340
}
326341
EXPORT_SYMBOL(pm_suspend);

0 commit comments

Comments
 (0)