aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/sched.h
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2014-07-16 21:04:32 +0000
committerJohn Stultz <john.stultz@linaro.org>2014-07-23 10:18:05 -0700
commit57e0be041d9e21a7397eed3b67a7936ac4ac83c0 (patch)
tree789396df941faa3b43bd61b27b675157a423070b /include/linux/sched.h
parenttime: Export nsecs_to_jiffies() (diff)
downloadlinux-dev-57e0be041d9e21a7397eed3b67a7936ac4ac83c0.tar.xz
linux-dev-57e0be041d9e21a7397eed3b67a7936ac4ac83c0.zip
sched: Make task->real_start_time nanoseconds based
Simplify the only user of this data by removing the timespec conversion. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: John Stultz <john.stultz@linaro.org>
Diffstat (limited to 'include/linux/sched.h')
-rw-r--r--include/linux/sched.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h
index 306f4f0c987a..67678fa76f99 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -1368,7 +1368,7 @@ struct task_struct {
#endif
unsigned long nvcsw, nivcsw; /* context switch counts */
struct timespec start_time; /* monotonic time */
- struct timespec real_start_time; /* boot based time */
+ u64 real_start_time; /* boot based time in nsec */
/* mm fault and swap info: this can arguably be seen as either mm-specific or thread-specific */
unsigned long min_flt, maj_flt;