Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Frederic Weisbecker | dcbf832 | 2012-10-05 23:07:19 +0200 | [diff] [blame] | 2 | #ifndef _LINUX_KERNEL_VTIME_H |
| 3 | #define _LINUX_KERNEL_VTIME_H |
| 4 | |
Frederic Weisbecker | b049340 | 2013-07-12 03:10:15 +0200 | [diff] [blame] | 5 | #include <linux/context_tracking_state.h> |
Sean Christopherson | 6f922b8 | 2021-05-04 17:27:32 -0700 | [diff] [blame] | 6 | #include <linux/sched.h> |
| 7 | |
Frederic Weisbecker | a5725ac | 2013-07-16 18:50:52 +0200 | [diff] [blame] | 8 | #ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE |
| 9 | #include <asm/vtime.h> |
| 10 | #endif |
| 11 | |
Frederic Weisbecker | b049340 | 2013-07-12 03:10:15 +0200 | [diff] [blame] | 12 | /* |
Sean Christopherson | b41c723 | 2021-05-04 17:27:31 -0700 | [diff] [blame] | 13 | * Common vtime APIs |
| 14 | */ |
| 15 | #ifdef CONFIG_VIRT_CPU_ACCOUNTING |
| 16 | extern void vtime_account_kernel(struct task_struct *tsk); |
| 17 | extern void vtime_account_idle(struct task_struct *tsk); |
Sean Christopherson | b41c723 | 2021-05-04 17:27:31 -0700 | [diff] [blame] | 18 | #endif /* !CONFIG_VIRT_CPU_ACCOUNTING */ |
| 19 | |
| 20 | #ifdef CONFIG_VIRT_CPU_ACCOUNTING_GEN |
| 21 | extern void arch_vtime_task_switch(struct task_struct *tsk); |
| 22 | extern void vtime_user_enter(struct task_struct *tsk); |
| 23 | extern void vtime_user_exit(struct task_struct *tsk); |
| 24 | extern void vtime_guest_enter(struct task_struct *tsk); |
| 25 | extern void vtime_guest_exit(struct task_struct *tsk); |
| 26 | extern void vtime_init_idle(struct task_struct *tsk, int cpu); |
| 27 | #else /* !CONFIG_VIRT_CPU_ACCOUNTING_GEN */ |
| 28 | static inline void vtime_user_enter(struct task_struct *tsk) { } |
| 29 | static inline void vtime_user_exit(struct task_struct *tsk) { } |
| 30 | static inline void vtime_guest_enter(struct task_struct *tsk) { } |
| 31 | static inline void vtime_guest_exit(struct task_struct *tsk) { } |
| 32 | static inline void vtime_init_idle(struct task_struct *tsk, int cpu) { } |
| 33 | #endif |
| 34 | |
| 35 | #ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE |
| 36 | extern void vtime_account_irq(struct task_struct *tsk, unsigned int offset); |
| 37 | extern void vtime_account_softirq(struct task_struct *tsk); |
| 38 | extern void vtime_account_hardirq(struct task_struct *tsk); |
| 39 | extern void vtime_flush(struct task_struct *tsk); |
| 40 | #else /* !CONFIG_VIRT_CPU_ACCOUNTING_NATIVE */ |
| 41 | static inline void vtime_account_irq(struct task_struct *tsk, unsigned int offset) { } |
| 42 | static inline void vtime_account_softirq(struct task_struct *tsk) { } |
| 43 | static inline void vtime_account_hardirq(struct task_struct *tsk) { } |
| 44 | static inline void vtime_flush(struct task_struct *tsk) { } |
| 45 | #endif |
| 46 | |
| 47 | /* |
Frederic Weisbecker | e44fcb4 | 2019-10-16 04:56:54 +0200 | [diff] [blame] | 48 | * vtime_accounting_enabled_this_cpu() definitions/declarations |
Frederic Weisbecker | b049340 | 2013-07-12 03:10:15 +0200 | [diff] [blame] | 49 | */ |
Frederic Weisbecker | 8612f17 | 2016-07-13 16:50:04 +0200 | [diff] [blame] | 50 | #if defined(CONFIG_VIRT_CPU_ACCOUNTING_NATIVE) |
Frederic Weisbecker | 8d49547 | 2019-10-03 18:17:45 +0200 | [diff] [blame] | 51 | |
Frederic Weisbecker | e44fcb4 | 2019-10-16 04:56:54 +0200 | [diff] [blame] | 52 | static inline bool vtime_accounting_enabled_this_cpu(void) { return true; } |
Frederic Weisbecker | 8d49547 | 2019-10-03 18:17:45 +0200 | [diff] [blame] | 53 | extern void vtime_task_switch(struct task_struct *prev); |
| 54 | |
Sean Christopherson | 6f922b8 | 2021-05-04 17:27:32 -0700 | [diff] [blame] | 55 | static __always_inline void vtime_account_guest_enter(void) |
| 56 | { |
| 57 | vtime_account_kernel(current); |
| 58 | current->flags |= PF_VCPU; |
| 59 | } |
| 60 | |
| 61 | static __always_inline void vtime_account_guest_exit(void) |
| 62 | { |
| 63 | vtime_account_kernel(current); |
| 64 | current->flags &= ~PF_VCPU; |
| 65 | } |
| 66 | |
Frederic Weisbecker | 8612f17 | 2016-07-13 16:50:04 +0200 | [diff] [blame] | 67 | #elif defined(CONFIG_VIRT_CPU_ACCOUNTING_GEN) |
Frederic Weisbecker | 8d49547 | 2019-10-03 18:17:45 +0200 | [diff] [blame] | 68 | |
Frederic Weisbecker | e592539 | 2015-11-19 16:47:33 +0100 | [diff] [blame] | 69 | /* |
| 70 | * Checks if vtime is enabled on some CPU. Cputime readers want to be careful |
| 71 | * in that case and compute the tickless cputime. |
| 72 | * For now vtime state is tied to context tracking. We might want to decouple |
| 73 | * those later if necessary. |
| 74 | */ |
| 75 | static inline bool vtime_accounting_enabled(void) |
| 76 | { |
Frederic Weisbecker | 74c5787 | 2019-10-16 04:56:51 +0200 | [diff] [blame] | 77 | return context_tracking_enabled(); |
Frederic Weisbecker | e592539 | 2015-11-19 16:47:33 +0100 | [diff] [blame] | 78 | } |
| 79 | |
Frederic Weisbecker | 9adbb9d | 2019-10-16 04:56:55 +0200 | [diff] [blame] | 80 | static inline bool vtime_accounting_enabled_cpu(int cpu) |
| 81 | { |
Frederic Weisbecker | 023e9de | 2019-10-16 04:56:56 +0200 | [diff] [blame] | 82 | return context_tracking_enabled_cpu(cpu); |
Frederic Weisbecker | 9adbb9d | 2019-10-16 04:56:55 +0200 | [diff] [blame] | 83 | } |
| 84 | |
Frederic Weisbecker | e44fcb4 | 2019-10-16 04:56:54 +0200 | [diff] [blame] | 85 | static inline bool vtime_accounting_enabled_this_cpu(void) |
Frederic Weisbecker | b049340 | 2013-07-12 03:10:15 +0200 | [diff] [blame] | 86 | { |
Frederic Weisbecker | 023e9de | 2019-10-16 04:56:56 +0200 | [diff] [blame] | 87 | return context_tracking_enabled_this_cpu(); |
Frederic Weisbecker | b049340 | 2013-07-12 03:10:15 +0200 | [diff] [blame] | 88 | } |
Frederic Weisbecker | b049340 | 2013-07-12 03:10:15 +0200 | [diff] [blame] | 89 | |
Frederic Weisbecker | 8d49547 | 2019-10-03 18:17:45 +0200 | [diff] [blame] | 90 | extern void vtime_task_switch_generic(struct task_struct *prev); |
| 91 | |
| 92 | static inline void vtime_task_switch(struct task_struct *prev) |
| 93 | { |
Frederic Weisbecker | e44fcb4 | 2019-10-16 04:56:54 +0200 | [diff] [blame] | 94 | if (vtime_accounting_enabled_this_cpu()) |
Frederic Weisbecker | 8d49547 | 2019-10-03 18:17:45 +0200 | [diff] [blame] | 95 | vtime_task_switch_generic(prev); |
| 96 | } |
| 97 | |
Sean Christopherson | 6f922b8 | 2021-05-04 17:27:32 -0700 | [diff] [blame] | 98 | static __always_inline void vtime_account_guest_enter(void) |
| 99 | { |
| 100 | if (vtime_accounting_enabled_this_cpu()) |
| 101 | vtime_guest_enter(current); |
| 102 | else |
| 103 | current->flags |= PF_VCPU; |
| 104 | } |
| 105 | |
| 106 | static __always_inline void vtime_account_guest_exit(void) |
| 107 | { |
| 108 | if (vtime_accounting_enabled_this_cpu()) |
| 109 | vtime_guest_exit(current); |
| 110 | else |
| 111 | current->flags &= ~PF_VCPU; |
| 112 | } |
| 113 | |
Frederic Weisbecker | 8d49547 | 2019-10-03 18:17:45 +0200 | [diff] [blame] | 114 | #else /* !CONFIG_VIRT_CPU_ACCOUNTING */ |
| 115 | |
Frederic Weisbecker | e44fcb4 | 2019-10-16 04:56:54 +0200 | [diff] [blame] | 116 | static inline bool vtime_accounting_enabled_this_cpu(void) { return false; } |
Frederic Weisbecker | 8d49547 | 2019-10-03 18:17:45 +0200 | [diff] [blame] | 117 | static inline void vtime_task_switch(struct task_struct *prev) { } |
| 118 | |
Sean Christopherson | 6f922b8 | 2021-05-04 17:27:32 -0700 | [diff] [blame] | 119 | static __always_inline void vtime_account_guest_enter(void) |
| 120 | { |
| 121 | current->flags |= PF_VCPU; |
| 122 | } |
| 123 | |
| 124 | static __always_inline void vtime_account_guest_exit(void) |
| 125 | { |
| 126 | current->flags &= ~PF_VCPU; |
| 127 | } |
| 128 | |
Frederic Weisbecker | 8d49547 | 2019-10-03 18:17:45 +0200 | [diff] [blame] | 129 | #endif |
Frederic Weisbecker | b049340 | 2013-07-12 03:10:15 +0200 | [diff] [blame] | 130 | |
Frederic Weisbecker | 8612f17 | 2016-07-13 16:50:04 +0200 | [diff] [blame] | 131 | |
Frederic Weisbecker | 3e1df4f5 | 2012-10-06 05:23:22 +0200 | [diff] [blame] | 132 | #ifdef CONFIG_IRQ_TIME_ACCOUNTING |
Frederic Weisbecker | d3759e7 | 2020-12-02 12:57:31 +0100 | [diff] [blame] | 133 | extern void irqtime_account_irq(struct task_struct *tsk, unsigned int offset); |
Frederic Weisbecker | dcbf832 | 2012-10-05 23:07:19 +0200 | [diff] [blame] | 134 | #else |
Frederic Weisbecker | d3759e7 | 2020-12-02 12:57:31 +0100 | [diff] [blame] | 135 | static inline void irqtime_account_irq(struct task_struct *tsk, unsigned int offset) { } |
Frederic Weisbecker | dcbf832 | 2012-10-05 23:07:19 +0200 | [diff] [blame] | 136 | #endif |
| 137 | |
Frederic Weisbecker | d3759e7 | 2020-12-02 12:57:31 +0100 | [diff] [blame] | 138 | static inline void account_softirq_enter(struct task_struct *tsk) |
Frederic Weisbecker | fa5058f | 2012-10-06 04:07:19 +0200 | [diff] [blame] | 139 | { |
Frederic Weisbecker | d3759e7 | 2020-12-02 12:57:31 +0100 | [diff] [blame] | 140 | vtime_account_irq(tsk, SOFTIRQ_OFFSET); |
| 141 | irqtime_account_irq(tsk, SOFTIRQ_OFFSET); |
Frederic Weisbecker | fa5058f | 2012-10-06 04:07:19 +0200 | [diff] [blame] | 142 | } |
| 143 | |
Frederic Weisbecker | d3759e7 | 2020-12-02 12:57:31 +0100 | [diff] [blame] | 144 | static inline void account_softirq_exit(struct task_struct *tsk) |
Frederic Weisbecker | fa5058f | 2012-10-06 04:07:19 +0200 | [diff] [blame] | 145 | { |
Frederic Weisbecker | d3759e7 | 2020-12-02 12:57:31 +0100 | [diff] [blame] | 146 | vtime_account_softirq(tsk); |
| 147 | irqtime_account_irq(tsk, 0); |
| 148 | } |
| 149 | |
| 150 | static inline void account_hardirq_enter(struct task_struct *tsk) |
| 151 | { |
| 152 | vtime_account_irq(tsk, HARDIRQ_OFFSET); |
| 153 | irqtime_account_irq(tsk, HARDIRQ_OFFSET); |
| 154 | } |
| 155 | |
| 156 | static inline void account_hardirq_exit(struct task_struct *tsk) |
| 157 | { |
| 158 | vtime_account_hardirq(tsk); |
| 159 | irqtime_account_irq(tsk, 0); |
Frederic Weisbecker | fa5058f | 2012-10-06 04:07:19 +0200 | [diff] [blame] | 160 | } |
| 161 | |
Frederic Weisbecker | dcbf832 | 2012-10-05 23:07:19 +0200 | [diff] [blame] | 162 | #endif /* _LINUX_KERNEL_VTIME_H */ |