提交 56b90612 编写于 作者: I Ingo Molnar

sched clock: simplify __update_sched_clock()

- return the current clock instead of letting callers
  fetch it from scd->clock
Signed-off-by: NIngo Molnar <mingo@elte.hu>
Acked-by: NPeter Zijlstra <a.p.zijlstra@chello.nl>
Acked-by: NMike Galbraith <efault@gmx.de>
上级 18e4e36c
......@@ -97,7 +97,7 @@ void sched_clock_init(void)
* - filter out backward motion
* - use jiffies to generate a min,max window to clip the raw values
*/
static void __update_sched_clock(struct sched_clock_data *scd, u64 now)
static u64 __update_sched_clock(struct sched_clock_data *scd, u64 now)
{
unsigned long now_jiffies = jiffies;
long delta_jiffies = now_jiffies - scd->tick_jiffies;
......@@ -130,6 +130,8 @@ static void __update_sched_clock(struct sched_clock_data *scd, u64 now)
scd->tick_jiffies = now_jiffies;
scd->clock = clock;
return clock;
}
static void lock_double_clock(struct sched_clock_data *data1,
......@@ -174,8 +176,7 @@ u64 sched_clock_cpu(int cpu)
__raw_spin_lock(&scd->lock);
}
__update_sched_clock(scd, now);
clock = scd->clock;
clock = __update_sched_clock(scd, now);
__raw_spin_unlock(&scd->lock);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册