net/sfc: rename array of SW stats descriptions
[dpdk.git] / app / test / test_event_eth_rx_adapter.c
index dbf85be..add4d8a 100644 (file)
@@ -88,10 +88,7 @@ port_init_common(uint16_t port, const struct rte_eth_conf *port_conf,
                return retval;
        printf("Port %u MAC: %02" PRIx8 " %02" PRIx8 " %02" PRIx8
                           " %02" PRIx8 " %02" PRIx8 " %02" PRIx8 "\n",
-                       (unsigned int)port,
-                       addr.addr_bytes[0], addr.addr_bytes[1],
-                       addr.addr_bytes[2], addr.addr_bytes[3],
-                       addr.addr_bytes[4], addr.addr_bytes[5]);
+                       (unsigned int)port, RTE_ETHER_ADDR_BYTES(&addr));
 
        /* Enable RX in promiscuous mode for the Ethernet device. */
        retval = rte_eth_promiscuous_enable(port);
@@ -158,7 +155,9 @@ init_port_rx_intr(int num_ports)
                        default_params.rx_intr_port = portid;
                        return 0;
                }
-               rte_eth_dev_stop(portid);
+               retval = rte_eth_dev_stop(portid);
+               TEST_ASSERT(retval == 0, "Failed to stop port %u: %d\n",
+                                       portid, retval);
        }
        return 0;
 }
@@ -536,8 +535,11 @@ adapter_multi_eth_add_del(void)
 
        /* stop eth devices for existing */
        port_index = 0;
-       for (; port_index < rte_eth_dev_count_total(); port_index += 1)
-               rte_eth_dev_stop(port_index);
+       for (; port_index < rte_eth_dev_count_total(); port_index += 1) {
+               err = rte_eth_dev_stop(port_index);
+               TEST_ASSERT(err == 0, "Failed to stop port %u: %d\n",
+                                       port_index, err);
+       }
 
        /* add the max port for rx_adapter */
        port_index = rte_eth_dev_count_total();