[dpdk-dev] [PATCH 2/2] net/mrvl: allow adding ether addr before port init

Tomasz Duszynski tdu at semihalf.com
Thu Jan 18 11:57:37 CET 2018


Since DPDK restores ether address configuration after device
is started it is safe to add ether address to uninitialized port (ppio).

Fixes: c0511a8f741f ("net/mrvl: check if ppio is initialized")
Cc: stable at dpdk.org

Signed-off-by: Tomasz Duszynski <tdu at semihalf.com>
---
 drivers/net/mrvl/mrvl_ethdev.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/mrvl/mrvl_ethdev.c b/drivers/net/mrvl/mrvl_ethdev.c
index a011675..16a964b 100644
--- a/drivers/net/mrvl/mrvl_ethdev.c
+++ b/drivers/net/mrvl/mrvl_ethdev.c
@@ -909,7 +909,7 @@ mrvl_mac_addr_add(struct rte_eth_dev *dev, struct ether_addr *mac_addr,
 		return -1;

 	if (!priv->ppio)
-		return -EPERM;
+		return 0;

 	/*
 	 * Maximum number of uc addresses can be tuned via kernel module mvpp2x
--
2.7.4



More information about the dev mailing list