diff options
| author | Nicholas Piggin <[email protected]> | 2022-12-20 17:07:05 +1000 |
|---|---|---|
| committer | Peter Zijlstra <[email protected]> | 2022-12-27 12:52:17 +0100 |
| commit | c89970202a1153b2fc230e89f90c180bd5bcbcef (patch) | |
| tree | 5c979987c0eb0d8e3d71544b7788f08ac47044f8 /kernel | |
| parent | 8589018acc65e5ddfd111f0a7ee85f9afde3a830 (diff) | |
cputime: remove cputime_to_nsecs fallback
The archs that use cputime_to_nsecs() internally provide their own
definition and don't need the fallback. cputime_to_usecs() unused except
in this fallback, and is not defined anywhere.
This removes the final remnant of the cputime_t code from the kernel.
Signed-off-by: Nicholas Piggin <[email protected]>
Signed-off-by: Peter Zijlstra (Intel) <[email protected]>
Acked-by: Alexander Gordeev <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/sched/cputime.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/sched/cputime.c b/kernel/sched/cputime.c index 95fc77853743..af7952f12e6c 100644 --- a/kernel/sched/cputime.c +++ b/kernel/sched/cputime.c @@ -3,6 +3,10 @@ * Simple CPU accounting cgroup controller */ +#ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE + #include <asm/cputime.h> +#endif + #ifdef CONFIG_IRQ_TIME_ACCOUNTING /* |