[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20191021085140.14030-1-zhuguangqing83@gmail.com>
Date: Mon, 21 Oct 2019 16:51:40 +0800
From: zhuguangqing83@...il.com
To: gregkh@...uxfoundation.org, rjw@...ysocki.net, pavel@....cz,
len.brown@...el.com
Cc: linux-pm@...r.kernel.org, linux-kernel@...r.kernel.org,
zhuguangqing <zhuguangqing@...omi.com>
Subject: [PATCH] PM/wakeup: Add print_wakeup_sour_stats(m, &deleted_ws)
From: zhuguangqing <zhuguangqing@...omi.com>
After commit 00ee22c28915 (PM / wakeup: Use seq_open()
to show wakeup stats), print_wakeup_source_stats(m, &deleted_ws)
is deleted in function wakeup_sources_stats_seq_show().
Because deleted_ws is one of wakeup sources, so it should
also be showed. This patch add it to the end of all other
wakeup sources.
Signed-off-by: zhuguangqing <zhuguangqing@...omi.com>
---
drivers/base/power/wakeup.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/base/power/wakeup.c b/drivers/base/power/wakeup.c
index 5817b51d2b15..29e9434ccaaa 100644
--- a/drivers/base/power/wakeup.c
+++ b/drivers/base/power/wakeup.c
@@ -1071,6 +1071,9 @@ static void *wakeup_sources_stats_seq_next(struct seq_file *m,
break;
}
+ if (&ws->entry == &wakeup_sources)
+ print_wakeup_source_stats(m, &deleted_ws);
+
return next_ws;
}
--
2.17.1
Powered by blists - more mailing lists