aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrédéric Weisbecker <fweisbec@gmail.com>2017-02-21 10:18:41 -0500
committerMichael Ellerman <mpe@ellerman.id.au>2017-02-22 16:33:20 -0500
commit9f3768e02335ddd6ebe1d85d5cb3a68ee6264004 (patch)
tree610a764f9a0e137381a9dfe87ba98060e965dc4c
parentfda2d27db6eae5c2468f9e4657539b72bbc238bb (diff)
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: e7f340ca9c07 ("powerpc, sched/cputime: Remove unused cputime definitions") Reported-by: Abdul Haleem <abdhalee@linux.vnet.ibm.com> Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
-rw-r--r--arch/powerpc/kernel/time.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/time.c b/arch/powerpc/kernel/time.c
index bc2e08d415fa..06bca663b4df 100644
--- a/arch/powerpc/kernel/time.c
+++ b/arch/powerpc/kernel/time.c
@@ -689,7 +689,7 @@ unsigned long long running_clock(void)
689 * time and on a host which doesn't do any virtualisation TB *should* equal 689 * time and on a host which doesn't do any virtualisation TB *should* equal
690 * VTB so it makes no difference anyway. 690 * VTB so it makes no difference anyway.
691 */ 691 */
692 return local_clock() - cputime_to_nsecs(kcpustat_this_cpu->cpustat[CPUTIME_STEAL]); 692 return local_clock() - kcpustat_this_cpu->cpustat[CPUTIME_STEAL];
693} 693}
694#endif 694#endif
695 695