aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2014-06-11 19:59:17 -0400
committerThomas Gleixner <tglx@linutronix.de>2014-06-12 10:18:45 -0400
commitf037c1171db79be2a047b1a5aafa2fd1f05051cb (patch)
tree6b70b6345071ef79fc9b16287789995cb7f18f53
parent889235ce2b26cdd231c7a1d6005928ec42f11637 (diff)
fork: Use ktime_get_ts()
do_posix_clock_monotonic_gettime() is a leftover from the initial posix timer implementation which maps to ktime_get_ts(). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: John Stultz <john.stultz@linaro.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Oleg Nesterov <oleg@redhat.com> Link: http://lkml.kernel.org/r/20140611234607.427408044@linutronix.de Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Oleg Nesterov <oleg@redhat.com>
-rw-r--r--kernel/fork.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/fork.c b/kernel/fork.c
index d2799d1fc952..ea0dd7075543 100644
--- a/kernel/fork.c
+++ b/kernel/fork.c
@@ -1262,7 +1262,7 @@ static struct task_struct *copy_process(unsigned long clone_flags,
1262 1262
1263 posix_cpu_timers_init(p); 1263 posix_cpu_timers_init(p);
1264 1264
1265 do_posix_clock_monotonic_gettime(&p->start_time); 1265 ktime_get_ts(&p->start_time);
1266 p->real_start_time = p->start_time; 1266 p->real_start_time = p->start_time;
1267 monotonic_to_bootbased(&p->real_start_time); 1267 monotonic_to_bootbased(&p->real_start_time);
1268 p->io_context = NULL; 1268 p->io_context = NULL;