From: Tomas Janousek Document start times in struct task_struct Signed-off-by: Tomas Janousek Cc: Tomas Smetana Cc: John Stultz Signed-off-by: Andrew Morton --- include/linux/sched.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN include/linux/sched.h~use-boot-based-time-for-process-start-time-and-boot-time-fix-3 include/linux/sched.h --- a/include/linux/sched.h~use-boot-based-time-for-process-start-time-and-boot-time-fix-3 +++ a/include/linux/sched.h @@ -902,8 +902,8 @@ struct task_struct { unsigned int rt_priority; cputime_t utime, stime; unsigned long nvcsw, nivcsw; /* context switch counts */ - struct timespec start_time; - struct timespec real_start_time; + struct timespec start_time; /* monotonic time */ + struct timespec real_start_time; /* boot based time */ /* mm fault and swap info: this can arguably be seen as either mm-specific or thread-specific */ unsigned long min_flt, maj_flt; _