提交 9f3768e0 编写于 作者: F Frédéric Weisbecker 提交者: Michael Ellerman

powerpc: Remove leftover cputime_to_nsecs call causing build error

This type conversion is a leftover that got ignored during the kcpustat
conversion to nanosecs, resulting in build breakage with config having
CONFIG_NO_HZ_FULL=y.

	arch/powerpc/kernel/time.c: In function 'running_clock':
	arch/powerpc/kernel/time.c:712:2: error: implicit declaration of function 'cputime_to_nsecs' [-Werror=implicit-function-declaration]
	  return local_clock() - cputime_to_nsecs(kcpustat_this_cpu->cpustat[CPUTIME_STEAL]);

All we need is to remove it.

Fixes: e7f340ca ("powerpc, sched/cputime: Remove unused cputime definitions")
Reported-by: NAbdul Haleem <abdhalee@linux.vnet.ibm.com>
Signed-off-by: NFrederic Weisbecker <fweisbec@gmail.com>
Signed-off-by: NMichael Ellerman <mpe@ellerman.id.au>
上级 fda2d27d
...@@ -689,7 +689,7 @@ unsigned long long running_clock(void) ...@@ -689,7 +689,7 @@ unsigned long long running_clock(void)
* time and on a host which doesn't do any virtualisation TB *should* equal * time and on a host which doesn't do any virtualisation TB *should* equal
* VTB so it makes no difference anyway. * VTB so it makes no difference anyway.
*/ */
return local_clock() - cputime_to_nsecs(kcpustat_this_cpu->cpustat[CPUTIME_STEAL]); return local_clock() - kcpustat_this_cpu->cpustat[CPUTIME_STEAL];
} }
#endif #endif
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册