The patch titled cpuset: use seq_cpumask(), seq_nodemask() has been added to the -mm tree. Its filename is cpuset-use-seq_cpumask-seq_nodemask.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: cpuset: use seq_cpumask(), seq_nodemask() From: Alexey Dobriyan <adobriyan@xxxxxxxxx> -ENOCHANGELOG Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Cc: Paul Jackson <pj@xxxxxxx> Cc: Mike Travis <travis@xxxxxxx> Cc: Al Viro <viro@xxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/cpuset.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff -puN kernel/cpuset.c~cpuset-use-seq_cpumask-seq_nodemask kernel/cpuset.c --- a/kernel/cpuset.c~cpuset-use-seq_cpumask-seq_nodemask +++ a/kernel/cpuset.c @@ -2392,16 +2392,14 @@ const struct file_operations proc_cpuset void cpuset_task_status_allowed(struct seq_file *m, struct task_struct *task) { seq_printf(m, "Cpus_allowed:\t"); - m->count += cpumask_scnprintf(m->buf + m->count, m->size - m->count, - task->cpus_allowed); + seq_cpumask(m, &task->cpus_allowed); seq_printf(m, "\n"); seq_printf(m, "Cpus_allowed_list:\t"); m->count += cpulist_scnprintf(m->buf + m->count, m->size - m->count, task->cpus_allowed); seq_printf(m, "\n"); seq_printf(m, "Mems_allowed:\t"); - m->count += nodemask_scnprintf(m->buf + m->count, m->size - m->count, - task->mems_allowed); + seq_nodemask(m, &task->mems_allowed); seq_printf(m, "\n"); seq_printf(m, "Mems_allowed_list:\t"); m->count += nodelist_scnprintf(m->buf + m->count, m->size - m->count, _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are origin.patch vt8623fb-fix-kernel-oops.patch linux-next.patch mpt-remove-unused-struct-mpt_proc_entry_t.patch cdc-acm-dont-unlock-acm-mutex-on-error-path.patch seq_file-add-seq_cpumask-seq_nodemask.patch slb-drop-kmem-cache-argument-from-constructor-fix-fix-logfs.patch cpuset-use-seq_cpumask-seq_nodemask.patch devpts-switch-to-ida-checkpatch-fixes.patch proc-use-non-racy-method-for-proc-page_owner-creation-page_owner.patch likely_prof-changed-to-use-proc_create.patch proc-remove-proc_root-from-drivers-likelyprof.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html