|
@@ -445,13 +445,13 @@ void account_idle_ticks(unsigned long ticks)
|
|
|
* Use precise platform statistics if available:
|
|
|
*/
|
|
|
#ifdef CONFIG_VIRT_CPU_ACCOUNTING
|
|
|
-void task_times(struct task_struct *p, cputime_t *ut, cputime_t *st)
|
|
|
+void task_cputime_adjusted(struct task_struct *p, cputime_t *ut, cputime_t *st)
|
|
|
{
|
|
|
*ut = p->utime;
|
|
|
*st = p->stime;
|
|
|
}
|
|
|
|
|
|
-void thread_group_times(struct task_struct *p, cputime_t *ut, cputime_t *st)
|
|
|
+void thread_group_cputime_adjusted(struct task_struct *p, cputime_t *ut, cputime_t *st)
|
|
|
{
|
|
|
struct task_cputime cputime;
|
|
|
|
|
@@ -516,7 +516,7 @@ static cputime_t scale_utime(cputime_t utime, cputime_t rtime, cputime_t total)
|
|
|
return (__force cputime_t) temp;
|
|
|
}
|
|
|
|
|
|
-void task_times(struct task_struct *p, cputime_t *ut, cputime_t *st)
|
|
|
+void task_cputime_adjusted(struct task_struct *p, cputime_t *ut, cputime_t *st)
|
|
|
{
|
|
|
cputime_t rtime, utime = p->utime, total = utime + p->stime;
|
|
|
|
|
@@ -543,7 +543,7 @@ void task_times(struct task_struct *p, cputime_t *ut, cputime_t *st)
|
|
|
/*
|
|
|
* Must be called with siglock held.
|
|
|
*/
|
|
|
-void thread_group_times(struct task_struct *p, cputime_t *ut, cputime_t *st)
|
|
|
+void thread_group_cputime_adjusted(struct task_struct *p, cputime_t *ut, cputime_t *st)
|
|
|
{
|
|
|
struct signal_struct *sig = p->signal;
|
|
|
struct task_cputime cputime;
|