sched/cputime: Expose cputime_adjust()
authorTejun Heo <tj@kernel.org>
Mon, 25 Sep 2017 15:12:04 +0000 (08:12 -0700)
committerTejun Heo <tj@kernel.org>
Mon, 25 Sep 2017 15:12:04 +0000 (08:12 -0700)
Will be used by basic cgroup resource stat reporting later.

Signed-off-by: Tejun Heo <tj@kernel.org>
Acked-by: Peter Zijlstra <peterz@infradead.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Li Zefan <lizefan@huawei.com>
Cc: Johannes Weiner <hannes@cmpxchg.org>
include/linux/sched/cputime.h
kernel/sched/cputime.c

index 4c5b973..9251044 100644 (file)
@@ -53,7 +53,8 @@ static inline void task_cputime_scaled(struct task_struct *t,
 
 extern void task_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st);
 extern void thread_group_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st);
-
+extern void cputime_adjust(struct task_cputime *curr, struct prev_cputime *prev,
+                          u64 *ut, u64 *st);
 
 /*
  * Thread group CPU time accounting.
index 14d2dbf..8839b6e 100644 (file)
@@ -585,9 +585,8 @@ drop_precision:
  *
  * Assuming that rtime_i+1 >= rtime_i.
  */
-static void cputime_adjust(struct task_cputime *curr,
-                          struct prev_cputime *prev,
-                          u64 *ut, u64 *st)
+void cputime_adjust(struct task_cputime *curr, struct prev_cputime *prev,
+                   u64 *ut, u64 *st)
 {
        u64 rtime, stime, utime;
        unsigned long flags;