summary refs log tree commit diff
path: root/kernel/audit.c
diff options
context:
space:
mode:
authorPaul Moore <pmoore@redhat.com>2016-01-13 09:15:18 -0500
committerPaul Moore <paul@paul-moore.com>2016-01-13 09:15:18 -0500
commiteb8baf6aa3ba1fcb1c1fd2cc57e31195a42689fd (patch)
tree26be9c69111050479d6d64bb259a8df27083c1cb /kernel/audit.c
parentc4b7a7755f91081e430bbd58fec77194b05f834b (diff)
downloadlinux-eb8baf6aa3ba1fcb1c1fd2cc57e31195a42689fd.tar.gz
audit: remove audit_backlog_wait_overflow
It seems much more obvious and readable to simply use "0".

Signed-off-by: Paul Moore <pmoore@redhat.com>
Diffstat (limited to 'kernel/audit.c')
-rw-r--r--kernel/audit.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/kernel/audit.c b/kernel/audit.c
index 6d00bd1ff249..07d60e4b2af8 100644
--- a/kernel/audit.c
+++ b/kernel/audit.c
@@ -110,7 +110,6 @@ static u32	audit_backlog_limit = 64;
 #define AUDIT_BACKLOG_WAIT_TIME (60 * HZ)
 static u32	audit_backlog_wait_time_master = AUDIT_BACKLOG_WAIT_TIME;
 static u32	audit_backlog_wait_time = AUDIT_BACKLOG_WAIT_TIME;
-static u32	audit_backlog_wait_overflow = 0;
 
 /* The identity of the user shutting down the audit system. */
 kuid_t		audit_sig_uid = INVALID_UID;
@@ -1395,7 +1394,7 @@ struct audit_buffer *audit_log_start(struct audit_context *ctx, gfp_t gfp_mask,
 				skb_queue_len(&audit_skb_queue),
 				audit_backlog_limit);
 		audit_log_lost("backlog limit exceeded");
-		audit_backlog_wait_time = audit_backlog_wait_overflow;
+		audit_backlog_wait_time = 0;
 		wake_up(&audit_backlog_wait);
 		return NULL;
 	}