DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH 1/1] net/i40e: check return value of rte_zmalloc
@ 2017-03-25 12:30 caihe
  2017-03-27 11:00 ` Ferruh Yigit
  2017-03-28  1:29 ` Zhang, Helin
  0 siblings, 2 replies; 3+ messages in thread
From: caihe @ 2017-03-25 12:30 UTC (permalink / raw)
  To: helin.zhang; +Cc: jingjing.wu, dev, wangyunjian, Lilijun (Jerry), Zhoujingbin

Hi helin,

There is a bug without check the return value of alloc memory in function i40evf_add_del_all_mac_addr,
if we should fix it as below:

diff --git a/drivers/net/i40e/i40e_ethdev_vf.c b/drivers/net/i40e/i40e_ethdev_vf.c
index 55fd344..37ea7ac 100644
--- a/drivers/net/i40e/i40e_ethdev_vf.c
+++ b/drivers/net/i40e/i40e_ethdev_vf.c
@@ -2014,6 +2014,11 @@ static int i40evf_dev_xstats_get(struct rte_eth_dev *dev,
                }
 
                list = rte_zmalloc("i40evf_del_mac_buffer", len, 0);
+               if (!list) {
+                       PMD_DRV_LOG(ERR, "fail to alloc memory, abort execute command %s",
+                               add ? "OP_ADD_ETHER_ADDRESS" : "OP_DEL_ETHER_ADDRESS");
+                       return;
+               }
 
                for (i = begin; i < next_begin; i++) {
                        addr = &dev->data->mac_addrs[i];

Best Regards

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

end of thread, other threads:[~2017-03-28  1:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-25 12:30 [dpdk-dev] [PATCH 1/1] net/i40e: check return value of rte_zmalloc caihe
2017-03-27 11:00 ` Ferruh Yigit
2017-03-28  1:29 ` Zhang, Helin

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).