Commit 84e9dabf authored by Anirban Sinha's avatar Anirban Sinha Committed by Ingo Molnar

sched: Rename init_cfs_rq => init_tg_cfs_rq

... so that it does not share a common name with a function
within the same scope.
Signed-off-by: default avatarAnirban Sinha <asinha@zeugmasystems.com>
LKML-Reference: <DDFD17CC94A9BD49A82147DDF7D545C501EA98A6@exchange.ZeugmaSystems.local>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 34d76c41
...@@ -309,8 +309,8 @@ void set_tg_uid(struct user_struct *user) ...@@ -309,8 +309,8 @@ void set_tg_uid(struct user_struct *user)
/* /*
* Root task group. * Root task group.
* Every UID task group (including init_task_group aka UID-0) will * Every UID task group (including init_task_group aka UID-0) will
* be a child to this group. * be a child to this group.
*/ */
struct task_group root_task_group; struct task_group root_task_group;
...@@ -318,7 +318,7 @@ struct task_group root_task_group; ...@@ -318,7 +318,7 @@ struct task_group root_task_group;
/* Default task group's sched entity on each cpu */ /* Default task group's sched entity on each cpu */
static DEFINE_PER_CPU(struct sched_entity, init_sched_entity); static DEFINE_PER_CPU(struct sched_entity, init_sched_entity);
/* Default task group's cfs_rq on each cpu */ /* Default task group's cfs_rq on each cpu */
static DEFINE_PER_CPU(struct cfs_rq, init_cfs_rq) ____cacheline_aligned_in_smp; static DEFINE_PER_CPU(struct cfs_rq, init_tg_cfs_rq) ____cacheline_aligned_in_smp;
#endif /* CONFIG_FAIR_GROUP_SCHED */ #endif /* CONFIG_FAIR_GROUP_SCHED */
#ifdef CONFIG_RT_GROUP_SCHED #ifdef CONFIG_RT_GROUP_SCHED
...@@ -9400,11 +9400,11 @@ void __init sched_init(void) ...@@ -9400,11 +9400,11 @@ void __init sched_init(void)
* system cpu resource, based on the weight assigned to root * system cpu resource, based on the weight assigned to root
* user's cpu share (INIT_TASK_GROUP_LOAD). This is accomplished * user's cpu share (INIT_TASK_GROUP_LOAD). This is accomplished
* by letting tasks of init_task_group sit in a separate cfs_rq * by letting tasks of init_task_group sit in a separate cfs_rq
* (init_cfs_rq) and having one entity represent this group of * (init_tg_cfs_rq) and having one entity represent this group of
* tasks in rq->cfs (i.e init_task_group->se[] != NULL). * tasks in rq->cfs (i.e init_task_group->se[] != NULL).
*/ */
init_tg_cfs_entry(&init_task_group, init_tg_cfs_entry(&init_task_group,
&per_cpu(init_cfs_rq, i), &per_cpu(init_tg_cfs_rq, i),
&per_cpu(init_sched_entity, i), i, 1, &per_cpu(init_sched_entity, i), i, 1,
root_task_group.se[i]); root_task_group.se[i]);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment