|
@@ -4080,13 +4080,17 @@ unsigned long long task_delta_exec(struct task_struct *p)
|
|
|
* Account user cpu time to a process.
|
|
|
* @p: the process that the cpu time gets accounted to
|
|
|
* @cputime: the cpu time spent in user space since the last update
|
|
|
+ * @cputime_scaled: cputime scaled by cpu frequency
|
|
|
*/
|
|
|
-void account_user_time(struct task_struct *p, cputime_t cputime)
|
|
|
+void account_user_time(struct task_struct *p, cputime_t cputime,
|
|
|
+ cputime_t cputime_scaled)
|
|
|
{
|
|
|
struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
|
|
|
cputime64_t tmp;
|
|
|
|
|
|
+ /* Add user time to process. */
|
|
|
p->utime = cputime_add(p->utime, cputime);
|
|
|
+ p->utimescaled = cputime_add(p->utimescaled, cputime_scaled);
|
|
|
account_group_user_time(p, cputime);
|
|
|
|
|
|
/* Add user time to cpustat. */
|
|
@@ -4103,51 +4107,49 @@ void account_user_time(struct task_struct *p, cputime_t cputime)
|
|
|
* 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)
|
|
|
+static void account_guest_time(struct task_struct *p, cputime_t cputime,
|
|
|
+ cputime_t cputime_scaled)
|
|
|
{
|
|
|
cputime64_t tmp;
|
|
|
struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
|
|
|
|
|
|
tmp = cputime_to_cputime64(cputime);
|
|
|
|
|
|
+ /* Add guest time to process. */
|
|
|
p->utime = cputime_add(p->utime, cputime);
|
|
|
+ p->utimescaled = cputime_add(p->utimescaled, cputime_scaled);
|
|
|
account_group_user_time(p, cputime);
|
|
|
p->gtime = cputime_add(p->gtime, cputime);
|
|
|
|
|
|
+ /* Add guest time to cpustat. */
|
|
|
cpustat->user = cputime64_add(cpustat->user, tmp);
|
|
|
cpustat->guest = cputime64_add(cpustat->guest, tmp);
|
|
|
}
|
|
|
|
|
|
-/*
|
|
|
- * Account scaled user cpu time to a process.
|
|
|
- * @p: the process that the cpu time gets accounted to
|
|
|
- * @cputime: the cpu time spent in user space since the last update
|
|
|
- */
|
|
|
-void account_user_time_scaled(struct task_struct *p, cputime_t cputime)
|
|
|
-{
|
|
|
- p->utimescaled = cputime_add(p->utimescaled, cputime);
|
|
|
-}
|
|
|
-
|
|
|
/*
|
|
|
* Account system cpu time to a process.
|
|
|
* @p: the process that the cpu time gets accounted to
|
|
|
* @hardirq_offset: the offset to subtract from hardirq_count()
|
|
|
* @cputime: the cpu time spent in kernel space since the last update
|
|
|
+ * @cputime_scaled: cputime scaled by cpu frequency
|
|
|
*/
|
|
|
void account_system_time(struct task_struct *p, int hardirq_offset,
|
|
|
- cputime_t cputime)
|
|
|
+ cputime_t cputime, cputime_t cputime_scaled)
|
|
|
{
|
|
|
struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
|
|
|
struct rq *rq = this_rq();
|
|
|
cputime64_t tmp;
|
|
|
|
|
|
if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) {
|
|
|
- account_guest_time(p, cputime);
|
|
|
+ account_guest_time(p, cputime, cputime_scaled);
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
+ /* Add system time to process. */
|
|
|
p->stime = cputime_add(p->stime, cputime);
|
|
|
+ p->stimescaled = cputime_add(p->stimescaled, cputime_scaled);
|
|
|
account_group_system_time(p, cputime);
|
|
|
|
|
|
/* Add system time to cpustat. */
|
|
@@ -4166,17 +4168,6 @@ void account_system_time(struct task_struct *p, int hardirq_offset,
|
|
|
acct_update_integrals(p);
|
|
|
}
|
|
|
|
|
|
-/*
|
|
|
- * Account scaled system cpu time to a process.
|
|
|
- * @p: the process that the cpu time gets accounted to
|
|
|
- * @hardirq_offset: the offset to subtract from hardirq_count()
|
|
|
- * @cputime: the cpu time spent in kernel space since the last update
|
|
|
- */
|
|
|
-void account_system_time_scaled(struct task_struct *p, cputime_t cputime)
|
|
|
-{
|
|
|
- p->stimescaled = cputime_add(p->stimescaled, cputime);
|
|
|
-}
|
|
|
-
|
|
|
/*
|
|
|
* Account for involuntary wait time.
|
|
|
* @p: the process from which the cpu time has been stolen
|