diff options
author | 2024-03-13 21:17:33 +0100 | |
---|---|---|
committer | 2024-03-13 21:17:33 +0100 | |
commit | 2e21dee6a46a66e4c2ced778485e1044101edee4 (patch) | |
tree | b9a9565cf9e3954ad316c343715b43b401c51074 /tools/perf/scripts/python/compaction-times.py | |
parent | HID: input: avoid polling stylus battery on Chromebook Pompom (diff) | |
parent | HID: amd_sfh: Set the AMD SFH driver to depend on x86 (diff) | |
download | wireguard-linux-2e21dee6a46a66e4c2ced778485e1044101edee4.tar.xz wireguard-linux-2e21dee6a46a66e4c2ced778485e1044101edee4.zip |
Merge branch 'for-6.9/amd-sfh' into for-linus
- assorted fixes and optimizations for amd-sfh (Basavaraj Natikar)
Signed-off-by: Jiri Kosina <jkosina@suse.com>
Diffstat (limited to '')
-rw-r--r-- | tools/perf/scripts/python/compaction-times.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/scripts/python/compaction-times.py b/tools/perf/scripts/python/compaction-times.py index 2560a042dc6f..9401f7c14747 100644 --- a/tools/perf/scripts/python/compaction-times.py +++ b/tools/perf/scripts/python/compaction-times.py @@ -260,7 +260,7 @@ def pr_help(): comm_re = None pid_re = None -pid_regex = "^(\d*)-(\d*)$|^(\d*)$" +pid_regex = r"^(\d*)-(\d*)$|^(\d*)$" opt_proc = popt.DISP_DFL opt_disp = topt.DISP_ALL |