From 4f5b3e71ba23dc8c59e8306c8ad6234b49e8ec4f Mon Sep 17 00:00:00 2001 From: Andrew Morton Date: Thu, 8 Dec 2011 15:42:39 +1100 Subject: [PATCH] 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 --- kernel/cgroup.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); } } -- 2.39.5