~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/vtime.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

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

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php