• Home
  • Raw
  • Download

Lines Matching refs:tsk

12 extern void vtime_account_kernel(struct task_struct *tsk);
13 extern void vtime_account_idle(struct task_struct *tsk);
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);
23 static inline void vtime_user_enter(struct task_struct *tsk) { } in vtime_user_enter() argument
24 static inline void vtime_user_exit(struct task_struct *tsk) { } in vtime_user_exit() argument
25 static inline void vtime_guest_enter(struct task_struct *tsk) { } in vtime_guest_enter() argument
26 static inline void vtime_guest_exit(struct task_struct *tsk) { } in vtime_guest_exit() argument
27 static inline void vtime_init_idle(struct task_struct *tsk, int cpu) { } in vtime_init_idle() argument
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);
36 static inline void vtime_account_irq(struct task_struct *tsk, unsigned int offset) { } in vtime_account_irq() argument
37 static inline void vtime_account_softirq(struct task_struct *tsk) { } in vtime_account_softirq() argument
38 static inline void vtime_account_hardirq(struct task_struct *tsk) { } in vtime_account_hardirq() argument
39 static inline void vtime_flush(struct task_struct *tsk) { } in vtime_flush() argument
128 extern void irqtime_account_irq(struct task_struct *tsk, unsigned int offset);
130 static inline void irqtime_account_irq(struct task_struct *tsk, unsigned int offset) { } in irqtime_account_irq() argument
133 static inline void account_softirq_enter(struct task_struct *tsk) in account_softirq_enter() argument
135 vtime_account_irq(tsk, SOFTIRQ_OFFSET); in account_softirq_enter()
136 irqtime_account_irq(tsk, SOFTIRQ_OFFSET); in account_softirq_enter()
139 static inline void account_softirq_exit(struct task_struct *tsk) in account_softirq_exit() argument
141 vtime_account_softirq(tsk); in account_softirq_exit()
142 irqtime_account_irq(tsk, 0); in account_softirq_exit()
145 static inline void account_hardirq_enter(struct task_struct *tsk) in account_hardirq_enter() argument
147 vtime_account_irq(tsk, HARDIRQ_OFFSET); in account_hardirq_enter()
148 irqtime_account_irq(tsk, HARDIRQ_OFFSET); in account_hardirq_enter()
151 static inline void account_hardirq_exit(struct task_struct *tsk) in account_hardirq_exit() argument
153 vtime_account_hardirq(tsk); in account_hardirq_exit()
154 irqtime_account_irq(tsk, 0); in account_hardirq_exit()