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.

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>

authored by

Breno Leitao and committed by
Tejun Heo
18a1efe0 0bd96853

+1 -1
+1 -1
tools/workqueue/wq_dump.py
··· 227 227 print(f'NODE[{node:02}]={cpumask_str(node_to_cpumask_map[node])}') 228 228 print('') 229 229 230 - print(f'[{"workqueue":^{WQ_NAME_LEN-2}}\\ min max', end='') 230 + print(f'[{"workqueue":^{WQ_NAME_LEN-1}} min max', end='') 231 231 first = True 232 232 for node in for_each_node(): 233 233 if first: