aboutsummaryrefslogtreecommitdiffstats
path: root/fs/proc/array.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/proc/array.c')
-rw-r--r--fs/proc/array.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/proc/array.c b/fs/proc/array.c
index 2edbb657f859..84908556ea58 100644
--- a/fs/proc/array.c
+++ b/fs/proc/array.c
@@ -381,9 +381,9 @@ static inline void task_context_switch_counts(struct seq_file *m,
381static void task_cpus_allowed(struct seq_file *m, struct task_struct *task) 381static void task_cpus_allowed(struct seq_file *m, struct task_struct *task)
382{ 382{
383 seq_printf(m, "Cpus_allowed:\t%*pb\n", 383 seq_printf(m, "Cpus_allowed:\t%*pb\n",
384 cpumask_pr_args(&task->cpus_allowed)); 384 cpumask_pr_args(task->cpus_ptr));
385 seq_printf(m, "Cpus_allowed_list:\t%*pbl\n", 385 seq_printf(m, "Cpus_allowed_list:\t%*pbl\n",
386 cpumask_pr_args(&task->cpus_allowed)); 386 cpumask_pr_args(task->cpus_ptr));
387} 387}
388 388
389static inline void task_core_dumping(struct seq_file *m, struct mm_struct *mm) 389static inline void task_core_dumping(struct seq_file *m, struct mm_struct *mm)