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

profile: use %*pb[l] to print bitmaps including cpumasks and nodemasks

printk and friends can now format bitmaps using '%*pb[l]'. cpumask
and nodemask also provide cpumask_pr_args() and nodemask_pr_args()
respectively which can be used to generate the two printf arguments
necessary to format the specified cpu/nodemask.

Signed-off-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Tejun Heo and committed by
Linus Torvalds
ccbd59c1 c1d7f03f

+1 -2
+1 -2
kernel/profile.c
··· 422 422 423 423 static int prof_cpu_mask_proc_show(struct seq_file *m, void *v) 424 424 { 425 - seq_cpumask(m, prof_cpu_mask); 426 - seq_putc(m, '\n'); 425 + seq_printf(m, "%*pb\n", cpumask_pr_args(prof_cpu_mask)); 427 426 return 0; 428 427 } 429 428