Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0bf43f15 authored by Ruchi Kandoi's avatar Ruchi Kandoi Committed by John Stultz
Browse files

timekeeping: Prints the amounts of time spent during suspend



In addition to keeping a histogram of suspend times, also
print out the time spent in suspend to dmesg.

This helps to keep track of suspend time while debugging using
kernel logs.

Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Richard Cochran <richardcochran@gmail.com>
Cc: Prarit Bhargava <prarit@redhat.com>
Signed-off-by: default avatarRuchi Kandoi <kandoiruchi@google.com>
[jstultz: Tweaked commit message]
Signed-off-by: default avatarJohn Stultz <john.stultz@linaro.org>
parent 36374583
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -75,5 +75,7 @@ void tk_debug_account_sleep_time(struct timespec64 *t)
	int bin = min(fls(t->tv_sec), NUM_BINS-1);

	sleep_time_bin[bin]++;
	pr_info("Suspended for %lld.%03lu seconds\n", (s64)t->tv_sec,
			t->tv_nsec / NSEC_PER_MSEC);
}