sched/fair: Fix sched_entity::avg::decay_count initialization
authorKirill Tkhai <ktkhai@parallels.com>
Mon, 15 Dec 2014 11:56:58 +0000 (14:56 +0300)
committerIngo Molnar <mingo@kernel.org>
Wed, 14 Jan 2015 12:34:16 +0000 (13:34 +0100)
commitbb04159df99fa353d0fb524574aca03ce2c6515b
tree1ea21466b45395836fb0fd6abb6398eb012b135b
parent1f8a7633094b7886c0677b78ba60b82e501f3ce6
sched/fair: Fix sched_entity::avg::decay_count initialization

Child has the same decay_count as parent. If it's not zero,
we add it to parent's cfs_rq->removed_load:

wake_up_new_task()->set_task_cpu()->migrate_task_rq_fair().

Child's load is a just garbade after copying of parent,
it hasn't been on cfs_rq yet, and it must not be added to
cfs_rq::removed_load in migrate_task_rq_fair().

The patch moves sched_entity::avg::decay_count intialization
in sched_fork(). So, migrate_task_rq_fair() does not change
removed_load.

Signed-off-by: Kirill Tkhai <ktkhai@parallels.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: Ben Segall <bsegall@google.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Link: http://lkml.kernel.org/r/1418644618.6074.13.camel@tkhai
Signed-off-by: Ingo Molnar <mingo@kernel.org>
kernel/sched/core.c
kernel/sched/fair.c