aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/auditsc.c
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2018-06-18 16:58:24 +0200
committerPaul Moore <paul@paul-moore.com>2018-07-03 10:12:54 -0400
commitc72051d5778a9c0e5df31d6553a6fa3507b3685c (patch)
tree26d93be48c313b41ea6865da396e450fd4bc0f98 /kernel/auditsc.c
parentaudit: simplify audit_enabled check in audit_watch_log_rule_change() (diff)
downloadlinux-dev-c72051d5778a9c0e5df31d6553a6fa3507b3685c.tar.xz
linux-dev-c72051d5778a9c0e5df31d6553a6fa3507b3685c.zip
audit: use ktime_get_coarse_ts64() for time access
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>
Diffstat (limited to 'kernel/auditsc.c')
-rw-r--r--kernel/auditsc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/auditsc.c b/kernel/auditsc.c
index d762e0b8160e..f6a0cb32d76e 100644
--- a/kernel/auditsc.c
+++ b/kernel/auditsc.c
@@ -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);
}
/**