빠른 질문이 있습니다. /proc/stat의 매뉴얼 페이지에서 명확하지 않습니다. Is guest 및 guest_nice 시간이 /proc/stat의 사용자 시간에 포함되어 있습니까?
http://man7.org/linux/man-pages/man5/proc.5.html 매뉴얼에는 /proc/[pid]/stat에 대한 힌트만 있습니다.
https://lkml.org/lkml/2008/6/23/65 내가 이해하는 한 여기서는 /proc/stat 및 /proc/[pid]/stat에 대해 이야기하고 있습니다.
누군가 이것을 설명할 수 있나요? 그리고 이 정보에 대한 출처를 알려주고 싶으십니까?
답변1
매뉴얼 페이지에서:
This includes guest time,
guest_time (time spent running a virtual CPU, see
below), so that applications that are not aware of
the guest time field do not lose that time from
their calculations.
커널 소스 코드에서(.../kernel/sched/cputime.c
) 게스트 시간을 고려하면 모든 게스트 시간도 사용자 시간에 추가되는 것을 알 수 있습니다(nice도 비슷합니다).
/*
* Account guest cpu time to a process.
* @p: the process that the cpu time gets accounted to
* @cputime: the cpu time spent in virtual machine since the last update
* @cputime_scaled: cputime scaled by cpu frequency
*/
static void account_guest_time(struct task_struct *p, cputime_t cputime,
cputime_t cputime_scaled)
{
u64 *cpustat = kcpustat_this_cpu->cpustat;
/* Add guest time to process. */
p->utime += cputime;
p->utimescaled += cputime_scaled;
account_group_user_time(p, cputime);
p->gtime += cputime;
/* Add guest time to cpustat. */
if (task_nice(p) > 0) {
cpustat[CPUTIME_NICE] += (__force u64) cputime;
cpustat[CPUTIME_GUEST_NICE] += (__force u64) cputime;
} else {
cpustat[CPUTIME_USER] += (__force u64) cputime;
cpustat[CPUTIME_GUEST] += (__force u64) cputime;
}
}
다음을 통해 표시된 사용자 시간 및 손님 시간을 /proc/[pid]/stat
검색합니다 ..../fs/proc/array.c
gtime은 조정될 수 있지만 각각 및 필드를 do_task_stat()
호출하고 반환합니다 .task_cputime_adjusted()
task_gtime()
utime
gtime
struct task_struct
cputime_t task_gtime(struct task_struct *t)
{
unsigned int seq;
cputime_t gtime;
if (!vtime_accounting_enabled())
return t->gtime;
do {
seq = read_seqcount_begin(&t->vtime_seqcount);
gtime = t->gtime;
if (t->vtime_snap_whence == VTIME_SYS && t->flags & PF_VCPU)
gtime += vtime_delta(t);
} while (read_seqcount_retry(&t->vtime_seqcount, seq));
return gtime;
}
[이 글에 인용된 코드는 commit 에서 따왔습니다 29b4817 2016-08-07 Linus Torvalds Linux 4.8-rc1
.]