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