]> git.karo-electronics.de Git - linux-beck.git/commitdiff
tsacct: Use ktime_get_ts()
authorThomas Gleixner <tglx@linutronix.de>
Wed, 11 Jun 2014 23:59:13 +0000 (23:59 +0000)
committerThomas Gleixner <tglx@linutronix.de>
Thu, 12 Jun 2014 14:18:45 +0000 (16:18 +0200)
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>
Link: http://lkml.kernel.org/r/20140611234606.840900621@linutronix.de
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
kernel/tsacct.c

index a1dd9a1b1327e9121265cb681b4b483a375b163a..ea6d170452c4780a021cc3f8afd0a7c4f092d9cd 100644 (file)
@@ -38,7 +38,7 @@ void bacct_add_tsk(struct user_namespace *user_ns,
        BUILD_BUG_ON(TS_COMM_LEN < TASK_COMM_LEN);
 
        /* calculate task elapsed time in timespec */
-       do_posix_clock_monotonic_gettime(&uptime);
+       ktime_get_ts(&uptime);
        ts = timespec_sub(uptime, tsk->start_time);
        /* rebase elapsed time to usec (should never be negative) */
        ac_etime = timespec_to_ns(&ts);