diff options
| author | Breno Leitao <leitao@debian.org> | 2026-03-07 09:47:19 -0800 |
|---|---|---|
| committer | Tejun Heo <tj@kernel.org> | 2026-03-07 08:13:49 -1000 |
| commit | 18a1efe0156efd583a85e34d9869f92b02473705 (patch) | |
| tree | e233716375879ee307392bf81ff1aaaa0ccf26ab /tools | |
| parent | 0bd96853ba723bc3b174e0158a4499758e3296aa (diff) | |
tools/workqueue/wq_dump.py: remove backslash separator from node_nr/max_active header
Remove the backslash separator between the workqueue name and the
data columns in the "Unbound workqueue -> node_nr/max_active" header
for cleaner output.
Signed-off-by: Breno Leitao <leitao@debian.org>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/workqueue/wq_dump.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/workqueue/wq_dump.py b/tools/workqueue/wq_dump.py index d29b918306b4..2079e98f77e4 100644 --- a/tools/workqueue/wq_dump.py +++ b/tools/workqueue/wq_dump.py @@ -227,7 +227,7 @@ if 'node_to_cpumask_map' in prog: print(f'NODE[{node:02}]={cpumask_str(node_to_cpumask_map[node])}') print('') - print(f'[{"workqueue":^{WQ_NAME_LEN-2}}\\ min max', end='') + print(f'[{"workqueue":^{WQ_NAME_LEN-1}} min max', end='') first = True for node in for_each_node(): if first: |
