summaryrefslogtreecommitdiffstats
path: root/kernel/audit.c
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2018-06-18 10:58:24 -0400
committerPaul Moore <paul@paul-moore.com>2018-07-03 10:12:54 -0400
commitc72051d5778a9c0e5df31d6553a6fa3507b3685c (patch)
tree26d93be48c313b41ea6865da396e450fd4bc0f98 /kernel/audit.c
parent4fa7f086993594e79f456a04656da2fcb5691209 (diff)
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/audit.c')
-rw-r--r--kernel/audit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/audit.c b/kernel/audit.c
index 0f3222e4edde..e17bc697d11c 100644
--- a/kernel/audit.c
+++ b/kernel/audit.c
@@ -1721,7 +1721,7 @@ static inline void audit_get_stamp(struct audit_context *ctx,
1721 struct timespec64 *t, unsigned int *serial) 1721 struct timespec64 *t, unsigned int *serial)
1722{ 1722{
1723 if (!ctx || !auditsc_get_stamp(ctx, t, serial)) { 1723 if (!ctx || !auditsc_get_stamp(ctx, t, serial)) {
1724 *t = current_kernel_time64(); 1724 ktime_get_coarse_ts64(t);
1725 *serial = audit_serial(); 1725 *serial = audit_serial();
1726 } 1726 }
1727} 1727}