Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 64345
b: refs/heads/master
c: efe567f
h: refs/heads/master
i:
  64343: 2f588c8
v: v3
  • Loading branch information
Christian Borntraeger authored and Ingo Molnar committed Aug 23, 2007
1 parent af9c2a2 commit af4b445
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 16 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c57baf1e1e24b004b57d282267542baab802753c
refs/heads/master: efe567fc8281661524ffa75477a7c4ca9b466c63
44 changes: 29 additions & 15 deletions trunk/fs/proc/array.c
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,21 @@ int proc_pid_status(struct task_struct *task, char *buffer)
return buffer - orig;
}

static clock_t task_utime(struct task_struct *p)
/*
* Use precise platform statistics if available:
*/
#ifdef CONFIG_VIRT_CPU_ACCOUNTING
static cputime_t task_utime(struct task_struct *p)
{
return p->utime;
}

static cputime_t task_stime(struct task_struct *p)
{
return p->stime;
}
#else
static cputime_t task_utime(struct task_struct *p)
{
clock_t utime = cputime_to_clock_t(p->utime),
total = utime + cputime_to_clock_t(p->stime);
Expand All @@ -337,10 +351,10 @@ static clock_t task_utime(struct task_struct *p)
}
utime = (clock_t)temp;

return utime;
return clock_t_to_cputime(utime);
}

static clock_t task_stime(struct task_struct *p)
static cputime_t task_stime(struct task_struct *p)
{
clock_t stime;

Expand All @@ -349,10 +363,12 @@ static clock_t task_stime(struct task_struct *p)
* the total, to make sure the total observed by userspace
* grows monotonically - apps rely on that):
*/
stime = nsec_to_clock_t(p->se.sum_exec_runtime) - task_utime(p);
stime = nsec_to_clock_t(p->se.sum_exec_runtime) -
cputime_to_clock_t(task_utime(p));

return stime;
return clock_t_to_cputime(stime);
}
#endif

static int do_task_stat(struct task_struct *task, char *buffer, int whole)
{
Expand All @@ -368,8 +384,7 @@ static int do_task_stat(struct task_struct *task, char *buffer, int whole)
unsigned long long start_time;
unsigned long cmin_flt = 0, cmaj_flt = 0;
unsigned long min_flt = 0, maj_flt = 0;
cputime_t cutime, cstime;
clock_t utime, stime;
cputime_t cutime, cstime, utime, stime;
unsigned long rsslim = 0;
char tcomm[sizeof(task->comm)];
unsigned long flags;
Expand All @@ -387,8 +402,7 @@ static int do_task_stat(struct task_struct *task, char *buffer, int whole)

sigemptyset(&sigign);
sigemptyset(&sigcatch);
cutime = cstime = cputime_zero;
utime = stime = 0;
cutime = cstime = utime = stime = cputime_zero;

rcu_read_lock();
if (lock_task_sighand(task, &flags)) {
Expand All @@ -414,15 +428,15 @@ static int do_task_stat(struct task_struct *task, char *buffer, int whole)
do {
min_flt += t->min_flt;
maj_flt += t->maj_flt;
utime += task_utime(t);
stime += task_stime(t);
utime = cputime_add(utime, task_utime(t));
stime = cputime_add(stime, task_stime(t));
t = next_thread(t);
} while (t != task);

min_flt += sig->min_flt;
maj_flt += sig->maj_flt;
utime += cputime_to_clock_t(sig->utime);
stime += cputime_to_clock_t(sig->stime);
utime = cputime_add(utime, sig->utime);
stime = cputime_add(stime, sig->stime);
}

sid = signal_session(sig);
Expand Down Expand Up @@ -471,8 +485,8 @@ static int do_task_stat(struct task_struct *task, char *buffer, int whole)
cmin_flt,
maj_flt,
cmaj_flt,
utime,
stime,
cputime_to_clock_t(utime),
cputime_to_clock_t(stime),
cputime_to_clock_t(cutime),
cputime_to_clock_t(cstime),
priority,
Expand Down

0 comments on commit af4b445

Please sign in to comment.