aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Shi <[email protected]>2013-06-20 10:18:57 +0800
committerIngo Molnar <[email protected]>2013-06-27 10:07:44 +0200
commita9dc5d0e33c677619e4b97a38c23db1a42857905 (patch)
treeea79b3c67189f43bd0cf357a5cacc7ff734d7402
parenta9cef46a10cc1b84bf2cdf4060766d858c0439d8 (diff)
sched: Change get_rq_runnable_load() to static and inline
Based-on-patch-by: Fengguang Wu <[email protected]> Signed-off-by: Alex Shi <[email protected]> Tested-by: Vincent Guittot <[email protected]> Signed-off-by: Peter Zijlstra <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r--kernel/sched/proc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/sched/proc.c b/kernel/sched/proc.c
index ce5cd4892e43..16f5a30f9c88 100644
--- a/kernel/sched/proc.c
+++ b/kernel/sched/proc.c
@@ -502,12 +502,12 @@ static void __update_cpu_load(struct rq *this_rq, unsigned long this_load,
}
#ifdef CONFIG_SMP
-unsigned long get_rq_runnable_load(struct rq *rq)
+static inline unsigned long get_rq_runnable_load(struct rq *rq)
{
return rq->cfs.runnable_load_avg;
}
#else
-unsigned long get_rq_runnable_load(struct rq *rq)
+static inline unsigned long get_rq_runnable_load(struct rq *rq)
{
return rq->load.weight;
}