From: Andrew Morton WARNING: line over 80 characters #44: FILE: kernel/cpuset.c:754: + return !cpus_equal(tsk->cpus_allowed, (cgroup_cs(scan->cg))->cpus_allowed); total: 0 errors, 1 warnings, 149 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 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN kernel/cpuset.c~cpusets-update_cpumask-revision-checkpatch-fixes kernel/cpuset.c --- a/kernel/cpuset.c~cpusets-update_cpumask-revision-checkpatch-fixes +++ a/kernel/cpuset.c @@ -751,7 +751,8 @@ static inline int started_after(void *p1 */ int cpuset_test_cpumask(struct task_struct *tsk, struct cgroup_scanner *scan) { - return !cpus_equal(tsk->cpus_allowed, (cgroup_cs(scan->cg))->cpus_allowed); + return !cpus_equal(tsk->cpus_allowed, + (cgroup_cs(scan->cg))->cpus_allowed); } /** _