DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] net/i40e: fix array bounds
@ 2017-04-25  5:01 Jingjing Wu
  2017-04-25 10:05 ` Ferruh Yigit
  0 siblings, 1 reply; 2+ messages in thread
From: Jingjing Wu @ 2017-04-25  5:01 UTC (permalink / raw)
  To: dev; +Cc: jingjing.wu

Fix array bounds when set default ptype mapping.

Fixes: 62e94f7f66fb ("net/i40e: configure packet type mapping")
Signed-off-by: Jingjing Wu <jingjing.wu@intel.com>
---
 drivers/net/i40e/i40e_rxtx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/i40e/i40e_rxtx.c b/drivers/net/i40e/i40e_rxtx.c
index e5471b1..f470f57 100644
--- a/drivers/net/i40e/i40e_rxtx.c
+++ b/drivers/net/i40e/i40e_rxtx.c
@@ -2932,7 +2932,7 @@ i40e_set_default_ptype_table(struct rte_eth_dev *dev)
 		I40E_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
 	int i;
 
-	for (i = 0; i <= I40E_MAX_PKT_TYPE; i++)
+	for (i = 0; i < I40E_MAX_PKT_TYPE; i++)
 		ad->ptype_tbl[i] = i40e_get_default_pkt_type(i);
 }
 
-- 
2.4.11

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [dpdk-dev] [PATCH] net/i40e: fix array bounds
  2017-04-25  5:01 [dpdk-dev] [PATCH] net/i40e: fix array bounds Jingjing Wu
@ 2017-04-25 10:05 ` Ferruh Yigit
  0 siblings, 0 replies; 2+ messages in thread
From: Ferruh Yigit @ 2017-04-25 10:05 UTC (permalink / raw)
  To: Jingjing Wu, dev

On 4/25/2017 6:01 AM, Jingjing Wu wrote:
> Fix array bounds when set default ptype mapping.
> 
> Fixes: 62e94f7f66fb ("net/i40e: configure packet type mapping")
> Signed-off-by: Jingjing Wu <jingjing.wu@intel.com>

Applied to dpdk-next-net/master, thanks.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-04-25 10:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-25  5:01 [dpdk-dev] [PATCH] net/i40e: fix array bounds Jingjing Wu
2017-04-25 10:05 ` Ferruh Yigit

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).