aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'kernel')
-rw-r--r--kernel/audit.c6
-rw-r--r--kernel/auditsc.c2
2 files changed, 5 insertions, 3 deletions
diff --git a/kernel/audit.c b/kernel/audit.c
index e7bff8000d23..aa35422c0c42 100644
--- a/kernel/audit.c
+++ b/kernel/audit.c
@@ -620,7 +620,7 @@ struct audit_buffer *audit_log_start(struct audit_context *ctx)
620 struct audit_buffer *ab = NULL; 620 struct audit_buffer *ab = NULL;
621 unsigned long flags; 621 unsigned long flags;
622 struct timespec t; 622 struct timespec t;
623 int serial = 0; 623 unsigned int serial;
624 624
625 if (!audit_initialized) 625 if (!audit_initialized)
626 return NULL; 626 return NULL;
@@ -669,8 +669,10 @@ struct audit_buffer *audit_log_start(struct audit_context *ctx)
669 audit_get_stamp(ab->ctx, &t, &serial); 669 audit_get_stamp(ab->ctx, &t, &serial);
670 else 670 else
671#endif 671#endif
672 {
672 t = CURRENT_TIME; 673 t = CURRENT_TIME;
673 674 serial = 0;
675 }
674 audit_log_format(ab, "audit(%lu.%03lu:%u): ", 676 audit_log_format(ab, "audit(%lu.%03lu:%u): ",
675 t.tv_sec, t.tv_nsec/1000000, serial); 677 t.tv_sec, t.tv_nsec/1000000, serial);
676 return ab; 678 return ab;
diff --git a/kernel/auditsc.c b/kernel/auditsc.c
index 77e92592de57..49ecd707b953 100644
--- a/kernel/auditsc.c
+++ b/kernel/auditsc.c
@@ -992,7 +992,7 @@ void audit_inode(const char *name, const struct inode *inode)
992} 992}
993 993
994void audit_get_stamp(struct audit_context *ctx, 994void audit_get_stamp(struct audit_context *ctx,
995 struct timespec *t, int *serial) 995 struct timespec *t, unsigned int *serial)
996{ 996{
997 if (ctx) { 997 if (ctx) {
998 t->tv_sec = ctx->ctime.tv_sec; 998 t->tv_sec = ctx->ctime.tv_sec;