[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1322863119-14225-3-git-send-email-glommer@parallels.com>
Date: Fri, 2 Dec 2011 19:58:39 -0200
From: Glauber Costa <glommer@...allels.com>
To: linux-kernel@...r.kernel.org
Cc: a.p.zijlstra@...llo.nl, Glauber Costa <glommer@...allels.com>
Subject: [PATCH 2/2] fix parameter passing in task_group_account_field
The order of parameters is inverted. The index parameter
should come first.
Signed-off-by: Glauber Costa <glommer@...allels.com>
---
kernel/sched/core.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/kernel/sched/core.c b/kernel/sched/core.c
index b908df3..9fd0038 100644
--- a/kernel/sched/core.c
+++ b/kernel/sched/core.c
@@ -2585,8 +2585,8 @@ struct cgroup_subsys cpuacct_subsys;
struct cpuacct root_cpuacct;
#endif
-static inline void task_group_account_field(struct task_struct *p,
- u64 tmp, int index)
+static inline void task_group_account_field(struct task_struct *p, int index,
+ u64 tmp)
{
#ifdef CONFIG_CGROUP_CPUACCT
struct kernel_cpustat *kcpustat;
--
1.7.6.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists