aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/sched/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/sched/types.h')
-rw-r--r--include/linux/sched/types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/sched/types.h b/include/linux/sched/types.h
index 2c5c28ddd9b2..3c3e049224ae 100644
--- a/include/linux/sched/types.h
+++ b/include/linux/sched/types.h
@@ -6,8 +6,8 @@
/**
* struct task_cputime - collected CPU time counts
- * @utime: time spent in user mode, in nanoseconds
* @stime: time spent in kernel mode, in nanoseconds
+ * @utime: time spent in user mode, in nanoseconds
* @sum_exec_runtime: total time spent on the CPU, in nanoseconds
*
* This structure groups together three kinds of CPU time that are tracked for
@@ -15,8 +15,8 @@
* these counts together and treat all three of them in parallel.
*/
struct task_cputime {
- u64 utime;
u64 stime;
+ u64 utime;
unsigned long long sum_exec_runtime;
};