New upstream version 16.11.8
[deb_dpdk.git] / app / test / test_link_bonding_rssconf.c
index 23052a2..e7a5650 100644 (file)
@@ -533,6 +533,7 @@ test_setup(void)
        int port_id;
        char name[256];
        struct slave_conf *port;
+       struct ether_addr mac_addr = { .addr_bytes = {0} };
 
        if (test_params.mbuf_pool == NULL) {
 
@@ -565,6 +566,10 @@ test_setup(void)
                TEST_ASSERT_SUCCESS(retval, "Failed to configure virtual ethdev %s\n",
                                name);
 
+               /* assign a non-zero MAC */
+               mac_addr.addr_bytes[5] = 0x10 + port->port_id;
+               rte_eth_dev_default_mac_addr_set(port->port_id, &mac_addr);
+
                rte_eth_dev_info_get(port->port_id, &port->dev_info);
        }