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_NATIVE
12 #include <asm/cputime.h>
14 #ifndef cputime_to_nsecs
15 # define cputime_to_nsecs(__ct) \
16 (cputime_to_usecs(__ct) * NSEC_PER_USEC)
18 #endif /* CONFIG_VIRT_CPU_ACCOUNTING_NATIVE */
20 #ifdef CONFIG_VIRT_CPU_ACCOUNTING_GEN
21 extern void task_cputime(struct task_struct
*t
,
22 u64
*utime
, u64
*stime
);
23 extern u64
task_gtime(struct task_struct
*t
);
25 static inline void task_cputime(struct task_struct
*t
,
26 u64
*utime
, u64
*stime
)
32 static inline u64
task_gtime(struct task_struct
*t
)
38 #ifdef CONFIG_ARCH_HAS_SCALED_CPUTIME
39 static inline void task_cputime_scaled(struct task_struct
*t
,
43 *utimescaled
= t
->utimescaled
;
44 *stimescaled
= t
->stimescaled
;
47 static inline void task_cputime_scaled(struct task_struct
*t
,
51 task_cputime(t
, utimescaled
, stimescaled
);
55 extern void task_cputime_adjusted(struct task_struct
*p
, u64
*ut
, u64
*st
);
56 extern void thread_group_cputime_adjusted(struct task_struct
*p
, u64
*ut
, u64
*st
);
57 extern void cputime_adjust(struct task_cputime
*curr
, struct prev_cputime
*prev
,
61 * Thread group CPU time accounting.
63 void thread_group_cputime(struct task_struct
*tsk
, struct task_cputime
*times
);
64 void thread_group_cputimer(struct task_struct
*tsk
, struct task_cputime
*times
);
68 * The following are functions that support scheduler-internal time accounting.
69 * These functions are generally called at the timer tick. None of this depends
70 * on CONFIG_SCHEDSTATS.
74 * get_running_cputimer - return &tsk->signal->cputimer if cputimer is running
76 * @tsk: Pointer to target task.
78 #ifdef CONFIG_POSIX_TIMERS
80 struct thread_group_cputimer
*get_running_cputimer(struct task_struct
*tsk
)
82 struct thread_group_cputimer
*cputimer
= &tsk
->signal
->cputimer
;
84 /* Check if cputimer isn't running. This is accessed without locking. */
85 if (!READ_ONCE(cputimer
->running
))
89 * After we flush the task's sum_exec_runtime to sig->sum_sched_runtime
90 * in __exit_signal(), we won't account to the signal struct further
91 * cputime consumed by that task, even though the task can still be
92 * ticking after __exit_signal().
94 * In order to keep a consistent behaviour between thread group cputime
95 * and thread group cputimer accounting, lets also ignore the cputime
96 * elapsing after __exit_signal() in any thread group timer running.
98 * This makes sure that POSIX CPU clocks and timers are synchronized, so
99 * that a POSIX CPU timer won't expire while the corresponding POSIX CPU
100 * clock delta is behind the expiring timer value.
102 if (unlikely(!tsk
->sighand
))
109 struct thread_group_cputimer
*get_running_cputimer(struct task_struct
*tsk
)
116 * account_group_user_time - Maintain utime for a thread group.
118 * @tsk: Pointer to task structure.
119 * @cputime: Time value by which to increment the utime field of the
120 * thread_group_cputime structure.
122 * If thread group time is being maintained, get the structure for the
123 * running CPU and update the utime field there.
125 static inline void account_group_user_time(struct task_struct
*tsk
,
128 struct thread_group_cputimer
*cputimer
= get_running_cputimer(tsk
);
133 atomic64_add(cputime
, &cputimer
->cputime_atomic
.utime
);
137 * account_group_system_time - Maintain stime for a thread group.
139 * @tsk: Pointer to task structure.
140 * @cputime: Time value by which to increment the stime field of the
141 * thread_group_cputime structure.
143 * If thread group time is being maintained, get the structure for the
144 * running CPU and update the stime field there.
146 static inline void account_group_system_time(struct task_struct
*tsk
,
149 struct thread_group_cputimer
*cputimer
= get_running_cputimer(tsk
);
154 atomic64_add(cputime
, &cputimer
->cputime_atomic
.stime
);
158 * account_group_exec_runtime - Maintain exec runtime for a thread group.
160 * @tsk: Pointer to task structure.
161 * @ns: Time value by which to increment the sum_exec_runtime field
162 * of the thread_group_cputime structure.
164 * If thread group time is being maintained, get the structure for the
165 * running CPU and update the sum_exec_runtime field there.
167 static inline void account_group_exec_runtime(struct task_struct
*tsk
,
168 unsigned long long ns
)
170 struct thread_group_cputimer
*cputimer
= get_running_cputimer(tsk
);
175 atomic64_add(ns
, &cputimer
->cputime_atomic
.sum_exec_runtime
);
178 static inline void prev_cputime_init(struct prev_cputime
*prev
)
180 #ifndef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
181 prev
->utime
= prev
->stime
= 0;
182 raw_spin_lock_init(&prev
->lock
);
186 extern unsigned long long
187 task_sched_runtime(struct task_struct
*task
);
189 #endif /* _LINUX_SCHED_CPUTIME_H */