Skip to content

Commit b345fd5

Browse files
committed
Merge tag 'pm-6.7-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
Pull power management fix from Rafael Wysocki: "Fix a syntax error in the sleepgraph utility which causes it to exit early on every invocation (David Woodhouse)" * tag 'pm-6.7-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm: PM: tools: Fix sleepgraph syntax error
2 parents 5b7ad87 + b85e2da commit b345fd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/power/pm-graph/sleepgraph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4151,7 +4151,7 @@ def parseKernelLog(data):
41514151
elif(re.match('Enabling non-boot CPUs .*', msg)):
41524152
# start of first cpu resume
41534153
cpu_start = ktime
4154-
elif(re.match('smpboot: CPU (?P<cpu>[0-9]*) is now offline', msg)) \
4154+
elif(re.match('smpboot: CPU (?P<cpu>[0-9]*) is now offline', msg) \
41554155
or re.match('psci: CPU(?P<cpu>[0-9]*) killed.*', msg)):
41564156
# end of a cpu suspend, start of the next
41574157
m = re.match('smpboot: CPU (?P<cpu>[0-9]*) is now offline', msg)

0 commit comments

Comments
 (0)