]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
audit: use ktime_get_coarse_ts64() for time access
authorArnd Bergmann <arnd@arndb.de>
Mon, 18 Jun 2018 14:58:24 +0000 (16:58 +0200)
committerPaul Moore <paul@paul-moore.com>
Tue, 3 Jul 2018 14:12:54 +0000 (10:12 -0400)
The API got renamed for consistency with the other time accessors,
this changes the audit caller as well.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Richard Guy Briggs <rgb@redhat.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
kernel/audit.c
kernel/auditsc.c

index 0f3222e4eddeb72603ae53f355bcf28f70171355..e17bc697d11c6d198ff16876f0c86abba2ada9fe 100644 (file)
@@ -1721,7 +1721,7 @@ static inline void audit_get_stamp(struct audit_context *ctx,
                                   struct timespec64 *t, unsigned int *serial)
 {
        if (!ctx || !auditsc_get_stamp(ctx, t, serial)) {
-               *t = current_kernel_time64();
+               ktime_get_coarse_ts64(t);
                *serial = audit_serial();
        }
 }
index d762e0b8160e3180b8160ec4a4d4868d8b99898b..f6a0cb32d76e2d5aa63c16fd0f0e7408b9628ce5 100644 (file)
@@ -1540,10 +1540,10 @@ void __audit_syscall_entry(int major, unsigned long a1, unsigned long a2,
        context->argv[2]    = a3;
        context->argv[3]    = a4;
        context->serial     = 0;
-       context->ctime = current_kernel_time64();
        context->in_syscall = 1;
        context->current_state  = state;
        context->ppid       = 0;
+       ktime_get_coarse_ts64(&context->ctime);
 }
 
 /**