diff options
author | Laurent Vivier <Laurent.Vivier@bull.net> | 2007-10-15 11:00:19 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2007-10-15 11:00:19 -0400 |
commit | 9ac52315d4cf5f561f36dabaf0720c00d3553162 (patch) | |
tree | afe7284f34a65d2540fcb2a9b764834f9d790fa7 /fs/proc/array.c | |
parent | 5e84cfde51cf303d368fcb48f22059f37b3872de (diff) |
sched: guest CPU accounting: add guest-CPU /proc/<pid>/stat fields
like for cpustat, introduce the "gtime" (guest time of the task) and
"cgtime" (guest time of the task children) fields for the
tasks. Modify signal_struct and task_struct.
Modify /proc/<pid>/stat to display these new fields.
Signed-off-by: Laurent Vivier <Laurent.Vivier@bull.net>
Acked-by: Avi Kivity <avi@qumranet.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'fs/proc/array.c')
-rw-r--r-- | fs/proc/array.c | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/fs/proc/array.c b/fs/proc/array.c index ee4814dd98f9..27b59f5f3bd1 100644 --- a/fs/proc/array.c +++ b/fs/proc/array.c | |||
@@ -370,6 +370,11 @@ static cputime_t task_stime(struct task_struct *p) | |||
370 | } | 370 | } |
371 | #endif | 371 | #endif |
372 | 372 | ||
373 | static cputime_t task_gtime(struct task_struct *p) | ||
374 | { | ||
375 | return p->gtime; | ||
376 | } | ||
377 | |||
373 | static int do_task_stat(struct task_struct *task, char *buffer, int whole) | 378 | static int do_task_stat(struct task_struct *task, char *buffer, int whole) |
374 | { | 379 | { |
375 | unsigned long vsize, eip, esp, wchan = ~0UL; | 380 | unsigned long vsize, eip, esp, wchan = ~0UL; |
@@ -385,6 +390,7 @@ static int do_task_stat(struct task_struct *task, char *buffer, int whole) | |||
385 | unsigned long cmin_flt = 0, cmaj_flt = 0; | 390 | unsigned long cmin_flt = 0, cmaj_flt = 0; |
386 | unsigned long min_flt = 0, maj_flt = 0; | 391 | unsigned long min_flt = 0, maj_flt = 0; |
387 | cputime_t cutime, cstime, utime, stime; | 392 | cputime_t cutime, cstime, utime, stime; |
393 | cputime_t cgtime, gtime; | ||
388 | unsigned long rsslim = 0; | 394 | unsigned long rsslim = 0; |
389 | char tcomm[sizeof(task->comm)]; | 395 | char tcomm[sizeof(task->comm)]; |
390 | unsigned long flags; | 396 | unsigned long flags; |
@@ -403,6 +409,7 @@ static int do_task_stat(struct task_struct *task, char *buffer, int whole) | |||
403 | sigemptyset(&sigign); | 409 | sigemptyset(&sigign); |
404 | sigemptyset(&sigcatch); | 410 | sigemptyset(&sigcatch); |
405 | cutime = cstime = utime = stime = cputime_zero; | 411 | cutime = cstime = utime = stime = cputime_zero; |
412 | cgtime = gtime = cputime_zero; | ||
406 | 413 | ||
407 | rcu_read_lock(); | 414 | rcu_read_lock(); |
408 | if (lock_task_sighand(task, &flags)) { | 415 | if (lock_task_sighand(task, &flags)) { |
@@ -420,6 +427,7 @@ static int do_task_stat(struct task_struct *task, char *buffer, int whole) | |||
420 | cmaj_flt = sig->cmaj_flt; | 427 | cmaj_flt = sig->cmaj_flt; |
421 | cutime = sig->cutime; | 428 | cutime = sig->cutime; |
422 | cstime = sig->cstime; | 429 | cstime = sig->cstime; |
430 | cgtime = sig->cgtime; | ||
423 | rsslim = sig->rlim[RLIMIT_RSS].rlim_cur; | 431 | rsslim = sig->rlim[RLIMIT_RSS].rlim_cur; |
424 | 432 | ||
425 | /* add up live thread stats at the group level */ | 433 | /* add up live thread stats at the group level */ |
@@ -430,6 +438,7 @@ static int do_task_stat(struct task_struct *task, char *buffer, int whole) | |||
430 | maj_flt += t->maj_flt; | 438 | maj_flt += t->maj_flt; |
431 | utime = cputime_add(utime, task_utime(t)); | 439 | utime = cputime_add(utime, task_utime(t)); |
432 | stime = cputime_add(stime, task_stime(t)); | 440 | stime = cputime_add(stime, task_stime(t)); |
441 | gtime = cputime_add(gtime, task_gtime(t)); | ||
433 | t = next_thread(t); | 442 | t = next_thread(t); |
434 | } while (t != task); | 443 | } while (t != task); |
435 | 444 | ||
@@ -437,6 +446,7 @@ static int do_task_stat(struct task_struct *task, char *buffer, int whole) | |||
437 | maj_flt += sig->maj_flt; | 446 | maj_flt += sig->maj_flt; |
438 | utime = cputime_add(utime, sig->utime); | 447 | utime = cputime_add(utime, sig->utime); |
439 | stime = cputime_add(stime, sig->stime); | 448 | stime = cputime_add(stime, sig->stime); |
449 | gtime += cputime_add(gtime, sig->gtime); | ||
440 | } | 450 | } |
441 | 451 | ||
442 | sid = signal_session(sig); | 452 | sid = signal_session(sig); |
@@ -454,6 +464,7 @@ static int do_task_stat(struct task_struct *task, char *buffer, int whole) | |||
454 | maj_flt = task->maj_flt; | 464 | maj_flt = task->maj_flt; |
455 | utime = task_utime(task); | 465 | utime = task_utime(task); |
456 | stime = task_stime(task); | 466 | stime = task_stime(task); |
467 | gtime = task_gtime(task); | ||
457 | } | 468 | } |
458 | 469 | ||
459 | /* scale priority and nice values from timeslices to -20..20 */ | 470 | /* scale priority and nice values from timeslices to -20..20 */ |
@@ -471,7 +482,7 @@ static int do_task_stat(struct task_struct *task, char *buffer, int whole) | |||
471 | 482 | ||
472 | res = sprintf(buffer, "%d (%s) %c %d %d %d %d %d %u %lu \ | 483 | res = sprintf(buffer, "%d (%s) %c %d %d %d %d %d %u %lu \ |
473 | %lu %lu %lu %lu %lu %ld %ld %ld %ld %d 0 %llu %lu %ld %lu %lu %lu %lu %lu \ | 484 | %lu %lu %lu %lu %lu %ld %ld %ld %ld %d 0 %llu %lu %ld %lu %lu %lu %lu %lu \ |
474 | %lu %lu %lu %lu %lu %lu %lu %lu %d %d %u %u %llu\n", | 485 | %lu %lu %lu %lu %lu %lu %lu %lu %d %d %u %u %llu %lu %ld\n", |
475 | task->pid, | 486 | task->pid, |
476 | tcomm, | 487 | tcomm, |
477 | state, | 488 | state, |
@@ -516,7 +527,9 @@ static int do_task_stat(struct task_struct *task, char *buffer, int whole) | |||
516 | task_cpu(task), | 527 | task_cpu(task), |
517 | task->rt_priority, | 528 | task->rt_priority, |
518 | task->policy, | 529 | task->policy, |
519 | (unsigned long long)delayacct_blkio_ticks(task)); | 530 | (unsigned long long)delayacct_blkio_ticks(task), |
531 | cputime_to_clock_t(gtime), | ||
532 | cputime_to_clock_t(cgtime)); | ||
520 | if (mm) | 533 | if (mm) |
521 | mmput(mm); | 534 | mmput(mm); |
522 | return res; | 535 | return res; |