[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <a5f86bcf03b2ed809245d57f5971ae42a8b85128.camel@infradead.org>
Date: Wed, 15 Nov 2023 11:47:51 -0500
From: David Woodhouse <dwmw2@...radead.org>
To: Len Brown <lenb@...nel.org>,
Todd E Brandt <todd.e.brandt@...ux.intel.com>,
Xueqin Luo <luoxueqin@...inos.cn>,
"Rafael J. Wysocki" <rafael.j.wysocki@...el.com>
Cc: linux-pm <linux-pm@...r.kernel.org>,
linux-kernel <linux-kernel@...r.kernel.org>
Subject: [PATCH] PM: tools: Fix sleepgraph syntax error
From: David Woodhouse <dwmw@...zon.co.uk>
The sleepgraph tool currently fails:
File "/usr/bin/sleepgraph", line 4155
or re.match('psci: CPU(?P<cpu>[0-9]*) killed.*', msg)):
^
SyntaxError: unmatched ')'
Fixes: 34ea427e01ea ("PM: tools: sleepgraph: Recognize "CPU killed" messages")
Signed-off-by: David Woodhouse <dwmw@...zon.co.uk>
diff --git a/tools/power/pm-graph/sleepgraph.py b/tools/power/pm-graph/sleepgraph.py
index 4a356a706785..40ad221e8881 100755
--- a/tools/power/pm-graph/sleepgraph.py
+++ b/tools/power/pm-graph/sleepgraph.py
@@ -4151,7 +4151,7 @@ def parseKernelLog(data):
elif(re.match('Enabling non-boot CPUs .*', msg)):
# start of first cpu resume
cpu_start = ktime
- elif(re.match('smpboot: CPU (?P<cpu>[0-9]*) is now offline', msg)) \
+ elif(re.match('smpboot: CPU (?P<cpu>[0-9]*) is now offline', msg) \
or re.match('psci: CPU(?P<cpu>[0-9]*) killed.*', msg)):
# end of a cpu suspend, start of the next
m = re.match('smpboot: CPU (?P<cpu>[0-9]*) is now offline', msg)
Download attachment "smime.p7s" of type "application/pkcs7-signature" (5965 bytes)
Powered by blists - more mailing lists