summaryrefslogtreecommitdiffstats
path: root/kernel/audit.c
diff options
context:
space:
mode:
authorPaul Moore <paul@paul-moore.com>2018-07-17 14:45:08 -0400
committerPaul Moore <paul@paul-moore.com>2018-07-17 14:45:08 -0400
commit290e44b7dd116cc61cf37b7ca0be13313bb11e37 (patch)
treed5e11d8f9e41784db8e1d162ac1cf77a26da4f1b /kernel/audit.c
parentc72051d5778a9c0e5df31d6553a6fa3507b3685c (diff)
audit: use ktime_get_coarse_real_ts64() for timestamps
Commit c72051d5778a ("audit: use ktime_get_coarse_ts64() for time access") converted audit's use of current_kernel_time64() to the new ktime_get_coarse_ts64() function. Unfortunately this resulted in incorrect timestamps, e.g. events stamped with the year 1969 despite it being 2018. This patch corrects this by using ktime_get_coarse_real_ts64() just like the current_kernel_time64() wrapper. Fixes: c72051d5778a ("audit: use ktime_get_coarse_ts64() for time access") Reviewed-by: Arnd Bergmann <arnd@arndb.de> 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 e17bc697d11c..2a8058764aa6 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 ktime_get_coarse_ts64(t); 1724 ktime_get_coarse_real_ts64(t);
1725 *serial = audit_serial(); 1725 *serial = audit_serial();
1726 } 1726 }
1727} 1727}