1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_SCHED_CPUTIME_H
3 #define _LINUX_SCHED_CPUTIME_H
5 #include <linux/sched/signal.h>
8 * cputime accounting APIs:
11 #ifdef CONFIG_VIRT_CPU_ACCOUNTING_GEN
12 extern bool task_cputime(struct task_struct
*t
,
13 u64
*utime
, u64
*stime
);
14 extern u64
task_gtime(struct task_struct
*t
);
16 static inline bool task_cputime(struct task_struct
*t
,
17 u64
*utime
, u64
*stime
)
24 static inline u64
task_gtime(struct task_struct
*t
)
30 #ifdef CONFIG_ARCH_HAS_SCALED_CPUTIME
31 static inline void task_cputime_scaled(struct task_struct
*t
,
35 *utimescaled
= t
->utimescaled
;
36 *stimescaled
= t
->stimescaled
;
39 static inline void task_cputime_scaled(struct task_struct
*t
,
43 task_cputime(t
, utimescaled
, stimescaled
);
47 extern void task_cputime_adjusted(struct task_struct
*p
, u64
*ut
, u64
*st
);
48 extern void thread_group_cputime_adjusted(struct task_struct
*p
, u64
*ut
, u64
*st
);
49 extern void cputime_adjust(struct task_cputime
*curr
, struct prev_cputime
*prev
,
53 * Thread group CPU time accounting.
55 void thread_group_cputime(struct task_struct
*tsk
, struct task_cputime
*times
);
56 void thread_group_sample_cputime(struct task_struct
*tsk
, u64
*samples
);
59 * The following are functions that support scheduler-internal time accounting.
60 * These functions are generally called at the timer tick. None of this depends
61 * on CONFIG_SCHEDSTATS.
65 * get_running_cputimer - return &tsk->signal->cputimer if cputimers are active
67 * @tsk: Pointer to target task.
69 #ifdef CONFIG_POSIX_TIMERS
71 struct thread_group_cputimer
*get_running_cputimer(struct task_struct
*tsk
)
73 struct thread_group_cputimer
*cputimer
= &tsk
->signal
->cputimer
;
76 * Check whether posix CPU timers are active. If not the thread
77 * group accounting is not active either. Lockless check.
79 if (!READ_ONCE(tsk
->signal
->posix_cputimers
.timers_active
))
83 * After we flush the task's sum_exec_runtime to sig->sum_sched_runtime
84 * in __exit_signal(), we won't account to the signal struct further
85 * cputime consumed by that task, even though the task can still be
86 * ticking after __exit_signal().
88 * In order to keep a consistent behaviour between thread group cputime
89 * and thread group cputimer accounting, lets also ignore the cputime
90 * elapsing after __exit_signal() in any thread group timer running.
92 * This makes sure that POSIX CPU clocks and timers are synchronized, so
93 * that a POSIX CPU timer won't expire while the corresponding POSIX CPU
94 * clock delta is behind the expiring timer value.
96 if (unlikely(!tsk
->sighand
))
103 struct thread_group_cputimer
*get_running_cputimer(struct task_struct
*tsk
)
110 * account_group_user_time - Maintain utime for a thread group.
112 * @tsk: Pointer to task structure.
113 * @cputime: Time value by which to increment the utime field of the
114 * thread_group_cputime structure.
116 * If thread group time is being maintained, get the structure for the
117 * running CPU and update the utime field there.
119 static inline void account_group_user_time(struct task_struct
*tsk
,
122 struct thread_group_cputimer
*cputimer
= get_running_cputimer(tsk
);
127 atomic64_add(cputime
, &cputimer
->cputime_atomic
.utime
);
131 * account_group_system_time - Maintain stime for a thread group.
133 * @tsk: Pointer to task structure.
134 * @cputime: Time value by which to increment the stime field of the
135 * thread_group_cputime structure.
137 * If thread group time is being maintained, get the structure for the
138 * running CPU and update the stime field there.
140 static inline void account_group_system_time(struct task_struct
*tsk
,
143 struct thread_group_cputimer
*cputimer
= get_running_cputimer(tsk
);
148 atomic64_add(cputime
, &cputimer
->cputime_atomic
.stime
);
152 * account_group_exec_runtime - Maintain exec runtime for a thread group.
154 * @tsk: Pointer to task structure.
155 * @ns: Time value by which to increment the sum_exec_runtime field
156 * of the thread_group_cputime structure.
158 * If thread group time is being maintained, get the structure for the
159 * running CPU and update the sum_exec_runtime field there.
161 static inline void account_group_exec_runtime(struct task_struct
*tsk
,
162 unsigned long long ns
)
164 struct thread_group_cputimer
*cputimer
= get_running_cputimer(tsk
);
169 atomic64_add(ns
, &cputimer
->cputime_atomic
.sum_exec_runtime
);
172 static inline void prev_cputime_init(struct prev_cputime
*prev
)
174 #ifndef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
175 prev
->utime
= prev
->stime
= 0;
176 raw_spin_lock_init(&prev
->lock
);
180 extern unsigned long long
181 task_sched_runtime(struct task_struct
*task
);
183 #endif /* _LINUX_SCHED_CPUTIME_H */