From: Andrew Morton ERROR: use tabs not spaces #317: FILE: kernel/cpuset.c:1823: +^I^I /* Move tasks from the empty cpuset to a parent */$ total: 1 errors, 0 warnings, 303 lines checked Your patch has style problems, please review. If any of these errors are false positives report them to the maintainer, see CHECKPATCH in MAINTAINERS. Please run checkpatch prior to sending patches Cc: Cliff Wickman Cc: David Rientjes Cc: Paul Jackson Cc: Paul Menage Signed-off-by: Andrew Morton --- kernel/cpuset.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff -puN kernel/cpuset.c~hotplug-cpu-move-tasks-in-empty-cpusets-to-parent-checkpatch-fixes kernel/cpuset.c --- a/kernel/cpuset.c~hotplug-cpu-move-tasks-in-empty-cpusets-to-parent-checkpatch-fixes +++ a/kernel/cpuset.c @@ -1733,8 +1733,8 @@ static void move_member_tasks_to_cpuset( scan.to = to->css.cgroup; if (cgroup_scan_tasks((struct cgroup_scanner *)&scan)) - printk( - "move_member_tasks_to_cpuset: cgroup_scan_tasks failed\n"); + printk(KERN_ERR "move_member_tasks_to_cpuset: " + "cgroup_scan_tasks failed\n"); } /* @@ -1820,7 +1820,7 @@ static void scan_for_empty_cpusets(const nodes_and(cp->mems_allowed, cp->mems_allowed, node_online_map); if ((cpus_empty(cp->cpus_allowed) || nodes_empty(cp->mems_allowed))) { - /* Move tasks from the empty cpuset to a parent */ + /* Move tasks from the empty cpuset to a parent */ mutex_unlock(&callback_mutex); remove_tasks_in_empty_cpuset(cp); mutex_lock(&callback_mutex); _