From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dan Carpenter Date: Tue, 07 Feb 2017 07:44:31 +0000 Subject: [patch v2 net-next] sfc: fix an off by one bug Message-Id: <20170207074431.GA18377@mwanda> List-Id: References: <60d163b6-0b49-172f-288c-e1712e04a84e@solarflare.com> In-Reply-To: <60d163b6-0b49-172f-288c-e1712e04a84e@solarflare.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Solarflare linux maintainers , Edward Cree Cc: Bert Kenward , netdev@vger.kernel.org, kernel-janitors@vger.kernel.org This bug is harmless because it's just a sanity check and we always pass valid values for "encap_type" but the test is off by one. Fixes: 9b4108012517 ("sfc: insert catch-all filters for encapsulated traffic") Signed-off-by: Dan Carpenter --- v2: Rebased against last linux-next diff --git a/drivers/net/ethernet/sfc/ef10.c b/drivers/net/ethernet/sfc/ef10.c index 0475f1831b92..dec0c8083ff3 100644 --- a/drivers/net/ethernet/sfc/ef10.c +++ b/drivers/net/ethernet/sfc/ef10.c @@ -5134,7 +5134,7 @@ static int efx_ef10_filter_insert_def(struct efx_nic *efx, /* quick bounds check (BCAST result impossible) */ BUILD_BUG_ON(EFX_EF10_BCAST != 0); - if (encap_type > ARRAY_SIZE(map) || map[encap_type] = 0) { + if (encap_type >= ARRAY_SIZE(map) || map[encap_type] = 0) { WARN_ON(1); return -EINVAL; }