summaryrefslogtreecommitdiffstats
path: root/kernel/auditsc.c
diff options
context:
space:
mode:
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,
1540 context->argv[2] = a3; 1540 context->argv[2] = a3;
1541 context->argv[3] = a4; 1541 context->argv[3] = a4;
1542 context->serial = 0; 1542 context->serial = 0;
1543 context->ctime = current_kernel_time64();
1544 context->in_syscall = 1; 1543 context->in_syscall = 1;
1545 context->current_state = state; 1544 context->current_state = state;
1546 context->ppid = 0; 1545 context->ppid = 0;
1546 ktime_get_coarse_ts64(&context->ctime);
1547} 1547}
1548 1548
1549/** 1549/**