aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2015-02-13 17:38:07 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2015-02-14 00:21:38 -0500
commita0c2e07d6d4fe6f67b057d0f1c961e70ff581eda (patch)
treec9a82a68d721fde6f7f4036e44ac8d2f3e0bf667
parent4497da6f950951b8819cd827bbebb8f214e8ecbe (diff)
proc: 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>
-rw-r--r--fs/proc/array.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/fs/proc/array.c b/fs/proc/array.c
index a3ccf4c4ce70..1295a00ca316 100644
--- a/fs/proc/array.c
+++ b/fs/proc/array.c
@@ -316,12 +316,10 @@ static inline void task_context_switch_counts(struct seq_file *m,
316 316
317static void task_cpus_allowed(struct seq_file *m, struct task_struct *task) 317static void task_cpus_allowed(struct seq_file *m, struct task_struct *task)
318{ 318{
319 seq_puts(m, "Cpus_allowed:\t"); 319 seq_printf(m, "Cpus_allowed:\t%*pb\n",
320 seq_cpumask(m, &task->cpus_allowed); 320 cpumask_pr_args(&task->cpus_allowed));
321 seq_putc(m, '\n'); 321 seq_printf(m, "Cpus_allowed_list:\t%*pbl\n",
322 seq_puts(m, "Cpus_allowed_list:\t"); 322 cpumask_pr_args(&task->cpus_allowed));
323 seq_cpumask_list(m, &task->cpus_allowed);
324 seq_putc(m, '\n');
325} 323}
326 324
327int proc_pid_status(struct seq_file *m, struct pid_namespace *ns, 325int proc_pid_status(struct seq_file *m, struct pid_namespace *ns,