[RFC PATCH 6/9] sched/fair: Add __always_inline compiler attribute to __accumulate_sum()

2016-05-15 Thread Yuyang Du
__accumulate_sum()'s caller and sibling functions are all inlined. And it will be called almost every time in its caller. It does not make sense if only it is not inlined. Signed-off-by: Yuyang Du --- kernel/sched/fair.c |2 +- 1 file changed, 1 insertion(+), 1

[RFC PATCH 6/9] sched/fair: Add __always_inline compiler attribute to __accumulate_sum()

2016-05-15 Thread Yuyang Du
__accumulate_sum()'s caller and sibling functions are all inlined. And it will be called almost every time in its caller. It does not make sense if only it is not inlined. Signed-off-by: Yuyang Du --- kernel/sched/fair.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git