|
@@ -853,6 +853,14 @@ void task_cputime(struct task_struct *t, cputime_t *utime, cputime_t *stime)
|
|
|
{
|
|
|
cputime_t udelta, sdelta;
|
|
|
|
|
|
+ if (!context_tracking_is_enabled()) {
|
|
|
+ if (utime)
|
|
|
+ *utime = t->utime;
|
|
|
+ if (stime)
|
|
|
+ *stime = t->stime;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
fetch_task_cputime(t, utime, stime, &t->utime,
|
|
|
&t->stime, &udelta, &sdelta);
|
|
|
if (utime)
|
|
@@ -866,6 +874,14 @@ void task_cputime_scaled(struct task_struct *t,
|
|
|
{
|
|
|
cputime_t udelta, sdelta;
|
|
|
|
|
|
+ if (!context_tracking_is_enabled()) {
|
|
|
+ if (utimescaled)
|
|
|
+ *utimescaled = t->utimescaled;
|
|
|
+ if (stimescaled)
|
|
|
+ *stimescaled = t->stimescaled;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
fetch_task_cputime(t, utimescaled, stimescaled,
|
|
|
&t->utimescaled, &t->stimescaled, &udelta, &sdelta);
|
|
|
if (utimescaled)
|