nvme: Add tertiary number to NVME_VS
[linux-2.6-block.git] / include / linux / vtime.h
CommitLineData
dcbf832e
FW
1#ifndef _LINUX_KERNEL_VTIME_H
2#define _LINUX_KERNEL_VTIME_H
3
b0493406 4#include <linux/context_tracking_state.h>
a5725ac2
FW
5#ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
6#include <asm/vtime.h>
7#endif
8
b0493406 9
dcbf832e
FW
10struct task_struct;
11
b0493406 12/*
55dbdcfa 13 * vtime_accounting_cpu_enabled() definitions/declarations
b0493406 14 */
8612f17a 15#if defined(CONFIG_VIRT_CPU_ACCOUNTING_NATIVE)
55dbdcfa 16static inline bool vtime_accounting_cpu_enabled(void) { return true; }
8612f17a 17#elif defined(CONFIG_VIRT_CPU_ACCOUNTING_GEN)
e5925394
FW
18/*
19 * Checks if vtime is enabled on some CPU. Cputime readers want to be careful
20 * in that case and compute the tickless cputime.
21 * For now vtime state is tied to context tracking. We might want to decouple
22 * those later if necessary.
23 */
24static inline bool vtime_accounting_enabled(void)
25{
26 return context_tracking_is_enabled();
27}
28
55dbdcfa 29static inline bool vtime_accounting_cpu_enabled(void)
b0493406 30{
e5925394 31 if (vtime_accounting_enabled()) {
d0df09eb 32 if (context_tracking_cpu_is_enabled())
b0493406
FW
33 return true;
34 }
35
36 return false;
37}
8612f17a 38#else /* !CONFIG_VIRT_CPU_ACCOUNTING */
55dbdcfa 39static inline bool vtime_accounting_cpu_enabled(void) { return false; }
8612f17a 40#endif
b0493406
FW
41
42
43/*
44 * Common vtime APIs
45 */
dcbf832e 46#ifdef CONFIG_VIRT_CPU_ACCOUNTING
b0493406
FW
47
48#ifdef __ARCH_HAS_VTIME_TASK_SWITCH
dcbf832e 49extern void vtime_task_switch(struct task_struct *prev);
b0493406
FW
50#else
51extern void vtime_common_task_switch(struct task_struct *prev);
52static inline void vtime_task_switch(struct task_struct *prev)
53{
55dbdcfa 54 if (vtime_accounting_cpu_enabled())
b0493406
FW
55 vtime_common_task_switch(prev);
56}
57#endif /* __ARCH_HAS_VTIME_TASK_SWITCH */
58
dcbf832e 59extern void vtime_account_system(struct task_struct *tsk);
fd25b4c2 60extern void vtime_account_idle(struct task_struct *tsk);
bcebdf84 61extern void vtime_account_user(struct task_struct *tsk);
3f4724ea 62
3f4724ea 63#else /* !CONFIG_VIRT_CPU_ACCOUNTING */
6a61671b 64
dcbf832e 65static inline void vtime_task_switch(struct task_struct *prev) { }
11113334 66static inline void vtime_account_system(struct task_struct *tsk) { }
abf917cd 67static inline void vtime_account_user(struct task_struct *tsk) { }
b0493406 68#endif /* !CONFIG_VIRT_CPU_ACCOUNTING */
abf917cd
FW
69
70#ifdef CONFIG_VIRT_CPU_ACCOUNTING_GEN
6a61671b 71extern void arch_vtime_task_switch(struct task_struct *tsk);
6a61671b 72extern void vtime_user_enter(struct task_struct *tsk);
b0493406 73
abf917cd
FW
74static inline void vtime_user_exit(struct task_struct *tsk)
75{
76 vtime_account_user(tsk);
77}
6a61671b
FW
78extern void vtime_guest_enter(struct task_struct *tsk);
79extern void vtime_guest_exit(struct task_struct *tsk);
45eacc69 80extern void vtime_init_idle(struct task_struct *tsk, int cpu);
b0493406 81#else /* !CONFIG_VIRT_CPU_ACCOUNTING_GEN */
abf917cd
FW
82static inline void vtime_user_enter(struct task_struct *tsk) { }
83static inline void vtime_user_exit(struct task_struct *tsk) { }
6a61671b
FW
84static inline void vtime_guest_enter(struct task_struct *tsk) { }
85static inline void vtime_guest_exit(struct task_struct *tsk) { }
45eacc69 86static inline void vtime_init_idle(struct task_struct *tsk, int cpu) { }
dcbf832e
FW
87#endif
88
8612f17a
FW
89#ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
90extern void vtime_account_irq_enter(struct task_struct *tsk);
91static inline void vtime_account_irq_exit(struct task_struct *tsk)
92{
93 /* On hard|softirq exit we always account to hard|softirq cputime */
94 vtime_account_system(tsk);
95}
96#else /* !CONFIG_VIRT_CPU_ACCOUNTING_NATIVE */
97static inline void vtime_account_irq_enter(struct task_struct *tsk) { }
98static inline void vtime_account_irq_exit(struct task_struct *tsk) { }
99#endif
100
101
3e1df4f5
FW
102#ifdef CONFIG_IRQ_TIME_ACCOUNTING
103extern void irqtime_account_irq(struct task_struct *tsk);
dcbf832e 104#else
3e1df4f5 105static inline void irqtime_account_irq(struct task_struct *tsk) { }
dcbf832e
FW
106#endif
107
6a61671b 108static inline void account_irq_enter_time(struct task_struct *tsk)
fa5058f3 109{
6a61671b 110 vtime_account_irq_enter(tsk);
3e1df4f5 111 irqtime_account_irq(tsk);
fa5058f3
FW
112}
113
6a61671b 114static inline void account_irq_exit_time(struct task_struct *tsk)
fa5058f3 115{
6a61671b 116 vtime_account_irq_exit(tsk);
3e1df4f5 117 irqtime_account_irq(tsk);
fa5058f3
FW
118}
119
dcbf832e 120#endif /* _LINUX_KERNEL_VTIME_H */