Skip to content

Commit c1d7f03

Browse files
htejuntorvalds
authored andcommitted
irq: 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> Cc: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent a0c2e07 commit c1d7f03

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

kernel/irq/proc.c

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,9 @@ static int show_irq_affinity(int type, struct seq_file *m, void *v)
4646
mask = desc->pending_mask;
4747
#endif
4848
if (type)
49-
seq_cpumask_list(m, mask);
49+
seq_printf(m, "%*pbl\n", cpumask_pr_args(mask));
5050
else
51-
seq_cpumask(m, mask);
52-
seq_putc(m, '\n');
51+
seq_printf(m, "%*pb\n", cpumask_pr_args(mask));
5352
return 0;
5453
}
5554

@@ -67,8 +66,7 @@ static int irq_affinity_hint_proc_show(struct seq_file *m, void *v)
6766
cpumask_copy(mask, desc->affinity_hint);
6867
raw_spin_unlock_irqrestore(&desc->lock, flags);
6968

70-
seq_cpumask(m, mask);
71-
seq_putc(m, '\n');
69+
seq_printf(m, "%*pb\n", cpumask_pr_args(mask));
7270
free_cpumask_var(mask);
7371

7472
return 0;
@@ -186,8 +184,7 @@ static const struct file_operations irq_affinity_list_proc_fops = {
186184

187185
static int default_affinity_show(struct seq_file *m, void *v)
188186
{
189-
seq_cpumask(m, irq_default_affinity);
190-
seq_putc(m, '\n');
187+
seq_printf(m, "%*pb\n", cpumask_pr_args(irq_default_affinity));
191188
return 0;
192189
}
193190

0 commit comments

Comments
 (0)