[dpdk-dev] [PATCH v3] net/i40e: fix flag sent to mac_address_write

Igor Ryzhov iryzhov at nfware.com
Mon Jan 15 09:32:18 CET 2018


Current flag is in wrong byte order.
Use defined macro as it is done in Linux driver.

Fixes: e18e01e92c29 ("i40e: support default MAC address setting")
Cc: stable at dpdk.org

Signed-off-by: Igor Ryzhov <iryzhov at nfware.com>
---
v3:
* fix commit message
v2:
* fix checkpatch warning (long line)
* fix commit subject
* add Fixes line
* CC to stable
---
 drivers/net/i40e/i40e_ethdev.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i40e_ethdev.c
index 285d92b..055b9e8 100644
--- a/drivers/net/i40e/i40e_ethdev.c
+++ b/drivers/net/i40e/i40e_ethdev.c
@@ -10795,8 +10795,8 @@ static void i40e_set_default_mac_addr(struct rte_eth_dev *dev,
 		return;
 	}
 
-	/* Flags: 0x3 updates port address */
-	i40e_aq_mac_address_write(hw, 0x3, mac_addr->addr_bytes, NULL);
+	i40e_aq_mac_address_write(hw, I40E_AQC_WRITE_TYPE_LAA_WOL,
+				  mac_addr->addr_bytes, NULL);
 }
 
 static int
-- 
2.6.4



More information about the dev mailing list