Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+1 -1
+1 -1
tools/power/pm-graph/sleepgraph.py
··· 4151 4151 elif(re.match('Enabling non-boot CPUs .*', msg)): 4152 4152 # start of first cpu resume 4153 4153 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) \ 4155 4155 or re.match('psci: CPU(?P<cpu>[0-9]*) killed.*', msg)): 4156 4156 # end of a cpu suspend, start of the next 4157 4157 m = re.match('smpboot: CPU (?P<cpu>[0-9]*) is now offline', msg)