From: Andrew Morton Date: Thu, 8 Dec 2011 04:42:39 +0000 (+1100) Subject: cgroup-fix-task-counter-common-ancestor-logic-checkpatch-fixes X-Git-Tag: next-20111213~1^2~59 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=4f5b3e71ba23dc8c59e8306c8ad6234b49e8ec4f;p=karo-tx-linux.git cgroup-fix-task-counter-common-ancestor-logic-checkpatch-fixes Cc: Ben Blum WARNING: line over 80 characters #260: FILE: kernel/cgroup.c:2204: + ss->cancel_attach_task(cgrp, tc->oldcgrp, tc->tsk); total: 0 errors, 1 warnings, 198 lines checked ./patches/cgroup-fix-task-counter-common-ancestor-logic.patch has style problems, please review. If any of these errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS. Please run checkpatch prior to sending patches Cc: Frederic Weisbecker Signed-off-by: Andrew Morton --- diff --git a/kernel/cgroup.c b/kernel/cgroup.c index 19a4faff2331..a610014cc157 100644 --- a/kernel/cgroup.c +++ b/kernel/cgroup.c @@ -2201,7 +2201,8 @@ out_cancel_attach: tc = flex_array_get(group, i); if (tc->tsk == failed_task) break; - ss->cancel_attach_task(cgrp, tc->oldcgrp, tc->tsk); + ss->cancel_attach_task(cgrp, + tc->oldcgrp, tc->tsk); } }