Commit 18a1efe0 authored by Breno Leitao's avatar Breno Leitao Committed by Tejun Heo
Browse files

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: default avatarBreno Leitao <leitao@debian.org>
Signed-off-by: default avatarTejun Heo <tj@kernel.org>
parent 0bd96853
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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: