aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Barach <dave@barachs.net>2016-11-22 15:23:41 -0500
committerDamjan Marion <dmarion.lists@gmail.com>2016-11-22 21:25:47 +0000
commit7afe9e38269a30682a5e392b0e876e18d1465c31 (patch)
tree8d627653a17e8a1c651975c77f568f4ff4d69b0e
parentd28bc62a726c51bcfb9b90a6dd381b4727421004 (diff)
Fix coverity warnings, VPP-486
Change-Id: I4ec49e116fdb418ebf9d84000f2a0cec1cf78b14 Signed-off-by: Dave Barach <dave@barachs.net>
-rw-r--r--vlib/vlib/threads_cli.c8
-rw-r--r--vnet/vnet/l2tp/decap.c4
-rw-r--r--vpp/vpp-api/api.c25
3 files changed, 21 insertions, 16 deletions
diff --git a/vlib/vlib/threads_cli.c b/vlib/vlib/threads_cli.c
index aef67576..6651a4dd 100644
--- a/vlib/vlib/threads_cli.c
+++ b/vlib/vlib/threads_cli.c
@@ -444,9 +444,9 @@ test_frame_queue_nelts (vlib_main_t * vm, unformat_input_t * input,
while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
{
- if (unformat (line_input, "nelts %u"), &nelts)
+ if (unformat (line_input, "nelts %u", &nelts))
;
- else if (unformat (line_input, "index %u"), &index)
+ else if (unformat (line_input, "index %u", &index))
;
else
return clib_error_return (0, "parse error: '%U'",
@@ -511,9 +511,9 @@ test_frame_queue_threshold (vlib_main_t * vm, unformat_input_t * input,
while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
{
- if (unformat (line_input, "threshold %u"), &threshold)
+ if (unformat (line_input, "threshold %u", &threshold))
;
- else if (unformat (line_input, "index %u"), &index)
+ else if (unformat (line_input, "index %u", &index))
;
else
return clib_error_return (0, "parse error: '%U'",
diff --git a/vnet/vnet/l2tp/decap.c b/vnet/vnet/l2tp/decap.c
index ee307b64..e8986935 100644
--- a/vnet/vnet/l2tp/decap.c
+++ b/vnet/vnet/l2tp/decap.c
@@ -218,8 +218,8 @@ done:
else
{
/* Go to next node on the ip6 configuration chain */
- ASSERT (session);
- vnet_feature_next (session->sw_if_index, &next_index, b);
+ if (PREDICT_TRUE (session != 0))
+ vnet_feature_next (session->sw_if_index, &next_index, b);
}
}
diff --git a/vpp/vpp-api/api.c b/vpp/vpp-api/api.c
index 330b9159..91726e16 100644
--- a/vpp/vpp-api/api.c
+++ b/vpp/vpp-api/api.c
@@ -9166,14 +9166,14 @@ vl_api_ipsec_spd_dump_t_handler (vl_api_ipsec_spd_dump_t * mp)
spd_index = p[0];
spd = pool_elt_at_index (im->spds, spd_index);
- pool_foreach (policy, spd->policies, (
- {
- if (mp->sa_id == ~(0)
- || ntohl (mp->sa_id) ==
- policy->sa_id)
- send_ipsec_spd_details (policy, q,
- mp->context);}
- ));
+ /* *INDENT-OFF* */
+ pool_foreach (policy, spd->policies,
+ ({
+ if (mp->sa_id == ~(0) || ntohl (mp->sa_id) == policy->sa_id)
+ send_ipsec_spd_details (policy, q,
+ mp->context);}
+ ));
+ /* *INDENT-ON* */
#else
clib_warning ("unimplemented");
#endif
@@ -9184,9 +9184,12 @@ vl_api_feature_enable_disable_t_handler (vl_api_feature_enable_disable_t * mp)
{
vl_api_feature_enable_disable_reply_t *rmp;
int rv = 0;
+ u8 *arc_name, *feature_name;
- u8 *arc_name = format (0, "%s%c", mp->arc_name, 0);
- u8 *feature_name = format (0, "%s%c", mp->feature_name, 0);
+ VALIDATE_SW_IF_INDEX (mp);
+
+ arc_name = format (0, "%s%c", mp->arc_name, 0);
+ feature_name = format (0, "%s%c", mp->feature_name, 0);
vnet_feature_registration_t *reg;
reg =
@@ -9216,6 +9219,8 @@ vl_api_feature_enable_disable_t_handler (vl_api_feature_enable_disable_t * mp)
vec_free (feature_name);
vec_free (arc_name);
+ BAD_SW_IF_INDEX_LABEL;
+
REPLY_MACRO (VL_API_FEATURE_ENABLE_DISABLE_REPLY);
}