aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorPranith Kumar <bobby.prani@gmail.com>2015-03-11 14:08:19 -0400
committerPaul Moore <pmoore@redhat.com>2015-03-13 17:32:52 -0400
commit724e7bfcc566375158219c1454b4b6fc416b2c4a (patch)
tree2a2c820d252b3f4821279e2d5a2dc884e776c1d8 /kernel
parent5b28255278dd7e594c8dde317c2498b7dcbf900d (diff)
audit: Remove condition which always evaluates to false
After commit 3e1d0bb6224f019893d1c498cc3327559d183674 ("audit: Convert int limit uses to u32"), by converting an int to u32, few conditions will always evaluate to false. These warnings were emitted during compilation: kernel/audit.c: In function ‘audit_set_enabled’: kernel/audit.c:347:2: warning: comparison of unsigned expression < 0 is always false [-Wtype-limits] if (state < AUDIT_OFF || state > AUDIT_LOCKED) ^ kernel/audit.c: In function ‘audit_receive_msg’: kernel/audit.c:880:9: warning: comparison of unsigned expression < 0 is always false [-Wtype-limits] if (s.backlog_wait_time < 0 || The following patch removes those unnecessary conditions. Signed-off-by: Pranith Kumar <bobby.prani@gmail.com> Signed-off-by: Paul Moore <pmoore@redhat.com>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/audit.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/kernel/audit.c b/kernel/audit.c
index 52ee8eee0e07..d5a1220c8620 100644
--- a/kernel/audit.c
+++ b/kernel/audit.c
@@ -346,7 +346,7 @@ static int audit_set_backlog_wait_time(u32 timeout)
346static int audit_set_enabled(u32 state) 346static int audit_set_enabled(u32 state)
347{ 347{
348 int rc; 348 int rc;
349 if (state < AUDIT_OFF || state > AUDIT_LOCKED) 349 if (state > AUDIT_LOCKED)
350 return -EINVAL; 350 return -EINVAL;
351 351
352 rc = audit_do_config_change("audit_enabled", &audit_enabled, state); 352 rc = audit_do_config_change("audit_enabled", &audit_enabled, state);
@@ -888,8 +888,7 @@ static int audit_receive_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
888 if (s.mask & AUDIT_STATUS_BACKLOG_WAIT_TIME) { 888 if (s.mask & AUDIT_STATUS_BACKLOG_WAIT_TIME) {
889 if (sizeof(s) > (size_t)nlh->nlmsg_len) 889 if (sizeof(s) > (size_t)nlh->nlmsg_len)
890 return -EINVAL; 890 return -EINVAL;
891 if (s.backlog_wait_time < 0 || 891 if (s.backlog_wait_time > 10*AUDIT_BACKLOG_WAIT_TIME)
892 s.backlog_wait_time > 10*AUDIT_BACKLOG_WAIT_TIME)
893 return -EINVAL; 892 return -EINVAL;
894 err = audit_set_backlog_wait_time(s.backlog_wait_time); 893 err = audit_set_backlog_wait_time(s.backlog_wait_time);
895 if (err < 0) 894 if (err < 0)