net: add rte prefix to ether structures
[dpdk.git] / test / test / test_link_bonding.c
index 64e24a8..2527671 100644 (file)
@@ -17,6 +17,7 @@
 #include <rte_common.h>
 #include <rte_debug.h>
 #include <rte_ethdev.h>
+#include <rte_ethdev_driver.h>
 #include <rte_log.h>
 #include <rte_lcore.h>
 #include <rte_memory.h>
 
 #define TEST_MAX_NUMBER_OF_PORTS (6)
 
-#define RX_RING_SIZE 128
+#define RX_RING_SIZE 1024
 #define RX_FREE_THRESH 32
 #define RX_PTHRESH 8
 #define RX_HTHRESH 8
 #define RX_WTHRESH 0
 
-#define TX_RING_SIZE 512
+#define TX_RING_SIZE 1024
 #define TX_FREE_THRESH 32
 #define TX_PTHRESH 32
 #define TX_HTHRESH 0
 #define TX_WTHRESH 0
 #define TX_RSBIT_THRESH 32
-#define TX_Q_FLAGS (ETH_TXQ_FLAGS_NOMULTSEGS | ETH_TXQ_FLAGS_NOVLANOFFL |\
-       ETH_TXQ_FLAGS_NOXSUMSCTP | ETH_TXQ_FLAGS_NOXSUMUDP | \
-       ETH_TXQ_FLAGS_NOXSUMTCP)
 
 #define MBUF_CACHE_SIZE (250)
 #define BURST_SIZE (32)
@@ -75,11 +73,11 @@ struct link_bonding_unittest_params {
 
        struct rte_mempool *mbuf_pool;
 
-       struct ether_addr *default_slave_mac;
-       struct ether_addr *default_bonded_mac;
+       struct rte_ether_addr *default_slave_mac;
+       struct rte_ether_addr *default_bonded_mac;
 
        /* Packet Headers */
-       struct ether_hdr *pkt_eth_hdr;
+       struct rte_ether_hdr *pkt_eth_hdr;
        struct ipv4_hdr *pkt_ipv4_hdr;
        struct ipv6_hdr *pkt_ipv6_hdr;
        struct udp_hdr *pkt_udp_hdr;
@@ -101,8 +99,8 @@ static struct link_bonding_unittest_params default_params  = {
 
        .mbuf_pool = NULL,
 
-       .default_slave_mac = (struct ether_addr *)slave_mac,
-       .default_bonded_mac = (struct ether_addr *)bonded_mac,
+       .default_slave_mac = (struct rte_ether_addr *)slave_mac,
+       .default_bonded_mac = (struct rte_ether_addr *)bonded_mac,
 
        .pkt_eth_hdr = NULL,
        .pkt_ipv4_hdr = &pkt_ipv4_hdr,
@@ -134,35 +132,11 @@ static uint16_t dst_port_1 = 2024;
 
 static uint16_t vlan_id = 0x100;
 
-struct rte_eth_rxmode rx_mode = {
-       .max_rx_pkt_len = ETHER_MAX_LEN, /**< Default maximum frame length. */
-       .split_hdr_size = 0,
-       .header_split   = 0, /**< Header Split disabled. */
-       .hw_ip_checksum = 0, /**< IP checksum offload disabled. */
-       .hw_vlan_filter = 1, /**< VLAN filtering enabled. */
-       .hw_vlan_strip  = 1, /**< VLAN strip enabled. */
-       .hw_vlan_extend = 0, /**< Extended VLAN disabled. */
-       .jumbo_frame    = 0, /**< Jumbo Frame Support disabled. */
-       .hw_strip_crc   = 1, /**< CRC stripping by hardware enabled. */
-};
-
-struct rte_fdir_conf fdir_conf = {
-       .mode = RTE_FDIR_MODE_NONE,
-       .pballoc = RTE_FDIR_PBALLOC_64K,
-       .status = RTE_FDIR_REPORT_STATUS,
-       .drop_queue = 127,
-};
-
 static struct rte_eth_conf default_pmd_conf = {
        .rxmode = {
                .mq_mode = ETH_MQ_RX_NONE,
-               .max_rx_pkt_len = ETHER_MAX_LEN,
                .split_hdr_size = 0,
-               .header_split   = 0, /**< Header Split disabled */
-               .hw_ip_checksum = 0, /**< IP checksum offload enabled */
-               .hw_vlan_filter = 0, /**< VLAN filtering disabled */
-               .jumbo_frame    = 0, /**< Jumbo Frame Support disabled */
-               .hw_strip_crc   = 1, /**< CRC stripped by hardware */
+               .max_rx_pkt_len = ETHER_MAX_LEN,
        },
        .txmode = {
                .mq_mode = ETH_MQ_TX_NONE,
@@ -188,8 +162,6 @@ static struct rte_eth_txconf tx_conf_default = {
        },
        .tx_free_thresh = TX_FREE_THRESH,
        .tx_rs_thresh = TX_RSBIT_THRESH,
-       .txq_flags = TX_Q_FLAGS
-
 };
 
 static void free_virtualpmd_tx_queue(void);
@@ -238,12 +210,12 @@ static int
 test_setup(void)
 {
        int i, nb_mbuf_per_pool;
-       struct ether_addr *mac_addr = (struct ether_addr *)slave_mac;
+       struct rte_ether_addr *mac_addr = (struct rte_ether_addr *)slave_mac;
 
        /* Allocate ethernet packet header with space for VLAN header */
        if (test_params->pkt_eth_hdr == NULL) {
-               test_params->pkt_eth_hdr = malloc(sizeof(struct ether_hdr) +
-                               sizeof(struct vlan_hdr));
+               test_params->pkt_eth_hdr = malloc(sizeof(struct rte_ether_hdr) +
+                               sizeof(struct rte_vlan_hdr));
 
                TEST_ASSERT_NOT_NULL(test_params->pkt_eth_hdr,
                                "Ethernet header struct allocation failed!");
@@ -404,7 +376,7 @@ static int
 test_remove_slave_from_bonded_device(void)
 {
        int current_slave_count;
-       struct ether_addr read_mac_addr, *mac_addr;
+       struct rte_ether_addr read_mac_addr, *mac_addr;
        uint16_t slaves[RTE_MAX_ETHPORTS];
 
        TEST_ASSERT_SUCCESS(rte_eth_bond_slave_remove(test_params->bonded_port_id,
@@ -422,7 +394,7 @@ test_remove_slave_from_bonded_device(void)
                        current_slave_count, test_params->bonded_slave_count - 1);
 
 
-       mac_addr = (struct ether_addr *)slave_mac;
+       mac_addr = (struct rte_ether_addr *)slave_mac;
        mac_addr->addr_bytes[ETHER_ADDR_LEN-1] =
                        test_params->bonded_slave_count-1;
 
@@ -727,8 +699,8 @@ static int
 test_set_primary_slave(void)
 {
        int i, j, retval;
-       struct ether_addr read_mac_addr;
-       struct ether_addr *expected_mac_addr;
+       struct rte_ether_addr read_mac_addr;
+       struct rte_ether_addr *expected_mac_addr;
 
        /* Add 4 slaves to bonded device */
        for (i = test_params->bonded_slave_count; i < 4; i++)
@@ -778,7 +750,7 @@ test_set_primary_slave(void)
                                "Failed to start bonded port %d",
                                test_params->bonded_port_id);
 
-               expected_mac_addr = (struct ether_addr *)&slave_mac;
+               expected_mac_addr = (struct rte_ether_addr *)&slave_mac;
                expected_mac_addr->addr_bytes[ETHER_ADDR_LEN-1] = i;
 
                /* Check primary slave MAC */
@@ -829,12 +801,12 @@ static int
 test_set_explicit_bonded_mac(void)
 {
        int i;
-       struct ether_addr read_mac_addr;
-       struct ether_addr *mac_addr;
+       struct rte_ether_addr read_mac_addr;
+       struct rte_ether_addr *mac_addr;
 
        uint8_t explicit_bonded_mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0x00, 0x01 };
 
-       mac_addr = (struct ether_addr *)explicit_bonded_mac;
+       mac_addr = (struct rte_ether_addr *)explicit_bonded_mac;
 
        /* Invalid port ID */
        TEST_ASSERT_FAIL(rte_eth_bond_mac_address_set(INVALID_PORT_ID, mac_addr),
@@ -906,11 +878,11 @@ test_set_bonded_port_initialization_mac_assignment(void)
        uint16_t slaves[RTE_MAX_ETHPORTS];
        int slave_port_ids[BONDED_INIT_MAC_ASSIGNMENT_SLAVE_COUNT];
 
-       struct ether_addr slave_mac_addr, bonded_mac_addr, read_mac_addr;
+       struct rte_ether_addr slave_mac_addr, bonded_mac_addr, read_mac_addr;
 
        /* Initialize default values for MAC addresses */
-       memcpy(&slave_mac_addr, slave_mac, sizeof(struct ether_addr));
-       memcpy(&bonded_mac_addr, slave_mac, sizeof(struct ether_addr));
+       memcpy(&slave_mac_addr, slave_mac, sizeof(struct rte_ether_addr));
+       memcpy(&bonded_mac_addr, slave_mac, sizeof(struct rte_ether_addr));
 
        /*
         * 1. a - Create / configure  bonded / slave ethdevs
@@ -1296,11 +1268,11 @@ generate_test_burst(struct rte_mbuf **pkts_burst, uint16_t burst_size,
 
        if (toggle_dst_mac)
                initialize_eth_header(test_params->pkt_eth_hdr,
-                               (struct ether_addr *)src_mac, (struct ether_addr *)dst_mac_1,
+                               (struct rte_ether_addr *)src_mac, (struct rte_ether_addr *)dst_mac_1,
                                ether_type, vlan, vlan_id);
        else
                initialize_eth_header(test_params->pkt_eth_hdr,
-                               (struct ether_addr *)src_mac, (struct ether_addr *)dst_mac_0,
+                               (struct rte_ether_addr *)src_mac, (struct rte_ether_addr *)dst_mac_0,
                                ether_type, vlan, vlan_id);
 
 
@@ -1691,7 +1663,7 @@ test_roundrobin_rx_burst_on_multiple_slaves(void)
 static int
 test_roundrobin_verify_mac_assignment(void)
 {
-       struct ether_addr read_mac_addr, expected_mac_addr_0, expected_mac_addr_2;
+       struct rte_ether_addr read_mac_addr, expected_mac_addr_0, expected_mac_addr_2;
 
        int i;
 
@@ -1750,7 +1722,7 @@ test_roundrobin_verify_mac_assignment(void)
 
        /* Set explicit MAC address */
        TEST_ASSERT_SUCCESS(rte_eth_bond_mac_address_set(
-                       test_params->bonded_port_id, (struct ether_addr *)bonded_mac),
+                       test_params->bonded_port_id, (struct rte_ether_addr *)bonded_mac),
                        "Failed to set MAC");
 
        rte_eth_macaddr_get(test_params->bonded_port_id, &read_mac_addr);
@@ -1959,7 +1931,7 @@ int polling_test_slaves[TEST_RR_POLLING_LINK_STATUS_SLAVE_COUNT] = { -1, -1 };
 static int
 test_roundrobin_verfiy_polling_slave_link_status_change(void)
 {
-       struct ether_addr *mac_addr = (struct ether_addr *)polling_slave_mac;
+       struct rte_ether_addr *mac_addr = (struct rte_ether_addr *)polling_slave_mac;
        char slave_name[RTE_ETH_NAME_MAX_LEN];
 
        int i;
@@ -2058,7 +2030,7 @@ test_activebackup_tx_burst(void)
                        "Failed to initialize bonded device with slaves");
 
        initialize_eth_header(test_params->pkt_eth_hdr,
-                       (struct ether_addr *)src_mac, (struct ether_addr *)dst_mac_0,
+                       (struct rte_ether_addr *)src_mac, (struct rte_ether_addr *)dst_mac_0,
                        ETHER_TYPE_IPv4,  0, 0);
        pktlen = initialize_udp_header(test_params->pkt_udp_hdr, src_port,
                        dst_port_0, 16);
@@ -2265,7 +2237,7 @@ test_activebackup_verify_promiscuous_enable_disable(void)
 static int
 test_activebackup_verify_mac_assignment(void)
 {
-       struct ether_addr read_mac_addr, expected_mac_addr_0, expected_mac_addr_1;
+       struct rte_ether_addr read_mac_addr, expected_mac_addr_0, expected_mac_addr_1;
 
        rte_eth_macaddr_get(test_params->slave_port_ids[0], &expected_mac_addr_0);
        rte_eth_macaddr_get(test_params->slave_port_ids[1], &expected_mac_addr_1);
@@ -2347,7 +2319,7 @@ test_activebackup_verify_mac_assignment(void)
 
        /* Set explicit MAC address */
        TEST_ASSERT_SUCCESS(rte_eth_bond_mac_address_set(
-                       test_params->bonded_port_id, (struct ether_addr *)bonded_mac),
+                       test_params->bonded_port_id, (struct rte_ether_addr *)bonded_mac),
                        "failed to set MAC address");
 
        rte_eth_macaddr_get(test_params->bonded_port_id, &read_mac_addr);
@@ -2592,7 +2564,7 @@ test_balance_l2_tx_burst(void)
                        "Failed to set balance xmit policy.");
 
        initialize_eth_header(test_params->pkt_eth_hdr,
-                       (struct ether_addr *)src_mac, (struct ether_addr *)dst_mac_0,
+                       (struct rte_ether_addr *)src_mac, (struct rte_ether_addr *)dst_mac_0,
                        ETHER_TYPE_IPv4, 0, 0);
        pktlen = initialize_udp_header(test_params->pkt_udp_hdr, src_port,
                        dst_port_0, 16);
@@ -2607,7 +2579,7 @@ test_balance_l2_tx_burst(void)
                        "failed to generate packet burst");
 
        initialize_eth_header(test_params->pkt_eth_hdr,
-                       (struct ether_addr *)src_mac, (struct ether_addr *)dst_mac_1,
+                       (struct rte_ether_addr *)src_mac, (struct rte_ether_addr *)dst_mac_1,
                        ETHER_TYPE_IPv4, 0, 0);
 
        /* Generate a burst 2 of packets to transmit */
@@ -3157,7 +3129,7 @@ test_balance_verify_promiscuous_enable_disable(void)
 static int
 test_balance_verify_mac_assignment(void)
 {
-       struct ether_addr read_mac_addr, expected_mac_addr_0, expected_mac_addr_1;
+       struct rte_ether_addr read_mac_addr, expected_mac_addr_0, expected_mac_addr_1;
 
        rte_eth_macaddr_get(test_params->slave_port_ids[0], &expected_mac_addr_0);
        rte_eth_macaddr_get(test_params->slave_port_ids[1], &expected_mac_addr_1);
@@ -3239,7 +3211,7 @@ test_balance_verify_mac_assignment(void)
 
        /* Set explicit MAC address */
        TEST_ASSERT_SUCCESS(rte_eth_bond_mac_address_set(
-                       test_params->bonded_port_id, (struct ether_addr *)bonded_mac),
+                       test_params->bonded_port_id, (struct rte_ether_addr *)bonded_mac),
                        "failed to set MAC");
 
        rte_eth_macaddr_get(test_params->bonded_port_id, &read_mac_addr);
@@ -3430,7 +3402,7 @@ test_broadcast_tx_burst(void)
                        "Failed to initialise bonded device");
 
        initialize_eth_header(test_params->pkt_eth_hdr,
-                       (struct ether_addr *)src_mac, (struct ether_addr *)dst_mac_0,
+                       (struct rte_ether_addr *)src_mac, (struct rte_ether_addr *)dst_mac_0,
                        ETHER_TYPE_IPv4, 0, 0);
 
        pktlen = initialize_udp_header(test_params->pkt_udp_hdr, src_port,
@@ -3741,7 +3713,7 @@ test_broadcast_verify_promiscuous_enable_disable(void)
 static int
 test_broadcast_verify_mac_assignment(void)
 {
-       struct ether_addr read_mac_addr, expected_mac_addr_0, expected_mac_addr_1;
+       struct rte_ether_addr read_mac_addr, expected_mac_addr_0, expected_mac_addr_1;
 
        int i;
 
@@ -3802,7 +3774,7 @@ test_broadcast_verify_mac_assignment(void)
 
        /* Set explicit MAC address */
        TEST_ASSERT_SUCCESS(rte_eth_bond_mac_address_set(
-                       test_params->bonded_port_id, (struct ether_addr *)bonded_mac),
+                       test_params->bonded_port_id, (struct rte_ether_addr *)bonded_mac),
                        "Failed to set MAC address");
 
        rte_eth_macaddr_get(test_params->bonded_port_id, &read_mac_addr);
@@ -4013,12 +3985,12 @@ test_tlb_tx_burst(void)
                /*test two types of mac src own(bonding) and others */
                if (i % 2 == 0) {
                        initialize_eth_header(test_params->pkt_eth_hdr,
-                                       (struct ether_addr *)src_mac,
-                                       (struct ether_addr *)dst_mac_0, ETHER_TYPE_IPv4, 0, 0);
+                                       (struct rte_ether_addr *)src_mac,
+                                       (struct rte_ether_addr *)dst_mac_0, ETHER_TYPE_IPv4, 0, 0);
                } else {
                        initialize_eth_header(test_params->pkt_eth_hdr,
-                                       (struct ether_addr *)test_params->default_slave_mac,
-                                       (struct ether_addr *)dst_mac_0, ETHER_TYPE_IPv4, 0, 0);
+                                       (struct rte_ether_addr *)test_params->default_slave_mac,
+                                       (struct rte_ether_addr *)dst_mac_0, ETHER_TYPE_IPv4, 0, 0);
                }
                pktlen = initialize_udp_header(test_params->pkt_udp_hdr, src_port,
                                dst_port_0, 16);
@@ -4229,7 +4201,7 @@ test_tlb_verify_promiscuous_enable_disable(void)
 static int
 test_tlb_verify_mac_assignment(void)
 {
-       struct ether_addr read_mac_addr, expected_mac_addr_0, expected_mac_addr_1;
+       struct rte_ether_addr read_mac_addr, expected_mac_addr_0, expected_mac_addr_1;
 
        rte_eth_macaddr_get(test_params->slave_port_ids[0], &expected_mac_addr_0);
        rte_eth_macaddr_get(test_params->slave_port_ids[1], &expected_mac_addr_1);
@@ -4312,7 +4284,7 @@ test_tlb_verify_mac_assignment(void)
 
        /* Set explicit MAC address */
        TEST_ASSERT_SUCCESS(rte_eth_bond_mac_address_set(
-                       test_params->bonded_port_id, (struct ether_addr *)bonded_mac),
+                       test_params->bonded_port_id, (struct rte_ether_addr *)bonded_mac),
                        "failed to set MAC address");
 
        rte_eth_macaddr_get(test_params->bonded_port_id, &read_mac_addr);
@@ -4487,14 +4459,14 @@ test_alb_change_mac_in_reply_sent(void)
        struct rte_mbuf *pkt;
        struct rte_mbuf *pkts_sent[MAX_PKT_BURST];
 
-       struct ether_hdr *eth_pkt;
-       struct arp_hdr *arp_pkt;
+       struct rte_ether_hdr *eth_pkt;
+       struct rte_arp_hdr *arp_pkt;
 
        int slave_idx, nb_pkts, pkt_idx;
        int retval = 0;
 
-       struct ether_addr bond_mac, client_mac;
-       struct ether_addr *slave_mac1, *slave_mac2;
+       struct rte_ether_addr bond_mac, client_mac;
+       struct rte_ether_addr *slave_mac1, *slave_mac2;
 
        TEST_ASSERT_SUCCESS(
                        initialize_bonded_device_with_slaves(BONDING_MODE_ALB,
@@ -4520,42 +4492,42 @@ test_alb_change_mac_in_reply_sent(void)
         */
        pkt = rte_pktmbuf_alloc(test_params->mbuf_pool);
        memcpy(client_mac.addr_bytes, mac_client1, ETHER_ADDR_LEN);
-       eth_pkt = rte_pktmbuf_mtod(pkt, struct ether_hdr *);
+       eth_pkt = rte_pktmbuf_mtod(pkt, struct rte_ether_hdr *);
        initialize_eth_header(eth_pkt, &bond_mac, &client_mac, ETHER_TYPE_ARP, 0,
                        0);
-       arp_pkt = (struct arp_hdr *)((char *)eth_pkt + sizeof(struct ether_hdr));
+       arp_pkt = (struct rte_arp_hdr *)((char *)eth_pkt + sizeof(struct rte_ether_hdr));
        initialize_arp_header(arp_pkt, &bond_mac, &client_mac, ip_host, ip_client1,
-                       ARP_OP_REPLY);
+                       RTE_ARP_OP_REPLY);
        rte_eth_tx_burst(test_params->bonded_port_id, 0, &pkt, 1);
 
        pkt = rte_pktmbuf_alloc(test_params->mbuf_pool);
        memcpy(client_mac.addr_bytes, mac_client2, ETHER_ADDR_LEN);
-       eth_pkt = rte_pktmbuf_mtod(pkt, struct ether_hdr *);
+       eth_pkt = rte_pktmbuf_mtod(pkt, struct rte_ether_hdr *);
        initialize_eth_header(eth_pkt, &bond_mac, &client_mac, ETHER_TYPE_ARP, 0,
                        0);
-       arp_pkt = (struct arp_hdr *)((char *)eth_pkt + sizeof(struct ether_hdr));
+       arp_pkt = (struct rte_arp_hdr *)((char *)eth_pkt + sizeof(struct rte_ether_hdr));
        initialize_arp_header(arp_pkt, &bond_mac, &client_mac, ip_host, ip_client2,
-                       ARP_OP_REPLY);
+                       RTE_ARP_OP_REPLY);
        rte_eth_tx_burst(test_params->bonded_port_id, 0, &pkt, 1);
 
        pkt = rte_pktmbuf_alloc(test_params->mbuf_pool);
        memcpy(client_mac.addr_bytes, mac_client3, ETHER_ADDR_LEN);
-       eth_pkt = rte_pktmbuf_mtod(pkt, struct ether_hdr *);
+       eth_pkt = rte_pktmbuf_mtod(pkt, struct rte_ether_hdr *);
        initialize_eth_header(eth_pkt, &bond_mac, &client_mac, ETHER_TYPE_ARP, 0,
                        0);
-       arp_pkt = (struct arp_hdr *)((char *)eth_pkt + sizeof(struct ether_hdr));
+       arp_pkt = (struct rte_arp_hdr *)((char *)eth_pkt + sizeof(struct rte_ether_hdr));
        initialize_arp_header(arp_pkt, &bond_mac, &client_mac, ip_host, ip_client3,
-                       ARP_OP_REPLY);
+                       RTE_ARP_OP_REPLY);
        rte_eth_tx_burst(test_params->bonded_port_id, 0, &pkt, 1);
 
        pkt = rte_pktmbuf_alloc(test_params->mbuf_pool);
        memcpy(client_mac.addr_bytes, mac_client4, ETHER_ADDR_LEN);
-       eth_pkt = rte_pktmbuf_mtod(pkt, struct ether_hdr *);
+       eth_pkt = rte_pktmbuf_mtod(pkt, struct rte_ether_hdr *);
        initialize_eth_header(eth_pkt, &bond_mac, &client_mac, ETHER_TYPE_ARP, 0,
                        0);
-       arp_pkt = (struct arp_hdr *)((char *)eth_pkt + sizeof(struct ether_hdr));
+       arp_pkt = (struct rte_arp_hdr *)((char *)eth_pkt + sizeof(struct rte_ether_hdr));
        initialize_arp_header(arp_pkt, &bond_mac, &client_mac, ip_host, ip_client4,
-                       ARP_OP_REPLY);
+                       RTE_ARP_OP_REPLY);
        rte_eth_tx_burst(test_params->bonded_port_id, 0, &pkt, 1);
 
        slave_mac1 =
@@ -4573,8 +4545,8 @@ test_alb_change_mac_in_reply_sent(void)
                                MAX_PKT_BURST);
 
                for (pkt_idx = 0; pkt_idx < nb_pkts; pkt_idx++) {
-                       eth_pkt = rte_pktmbuf_mtod(pkts_sent[pkt_idx], struct ether_hdr *);
-                       arp_pkt = (struct arp_hdr *)((char *)eth_pkt + sizeof(struct ether_hdr));
+                       eth_pkt = rte_pktmbuf_mtod(pkts_sent[pkt_idx], struct rte_ether_hdr *);
+                       arp_pkt = (struct rte_arp_hdr *)((char *)eth_pkt + sizeof(struct rte_ether_hdr));
 
                        if (slave_idx%2 == 0) {
                                if (!is_same_ether_addr(slave_mac1, &arp_pkt->arp_data.arp_sha)) {
@@ -4598,8 +4570,8 @@ test_end:
 static int
 test_alb_reply_from_client(void)
 {
-       struct ether_hdr *eth_pkt;
-       struct arp_hdr *arp_pkt;
+       struct rte_ether_hdr *eth_pkt;
+       struct rte_arp_hdr *arp_pkt;
 
        struct rte_mbuf *pkt;
        struct rte_mbuf *pkts_sent[MAX_PKT_BURST];
@@ -4607,8 +4579,8 @@ test_alb_reply_from_client(void)
        int slave_idx, nb_pkts, pkt_idx, nb_pkts_sum = 0;
        int retval = 0;
 
-       struct ether_addr bond_mac, client_mac;
-       struct ether_addr *slave_mac1, *slave_mac2;
+       struct rte_ether_addr bond_mac, client_mac;
+       struct rte_ether_addr *slave_mac1, *slave_mac2;
 
        TEST_ASSERT_SUCCESS(
                        initialize_bonded_device_with_slaves(BONDING_MODE_ALB,
@@ -4633,45 +4605,45 @@ test_alb_reply_from_client(void)
         */
        pkt = rte_pktmbuf_alloc(test_params->mbuf_pool);
        memcpy(client_mac.addr_bytes, mac_client1, ETHER_ADDR_LEN);
-       eth_pkt = rte_pktmbuf_mtod(pkt, struct ether_hdr *);
+       eth_pkt = rte_pktmbuf_mtod(pkt, struct rte_ether_hdr *);
        initialize_eth_header(eth_pkt, &bond_mac, &client_mac, ETHER_TYPE_ARP, 0,
                        0);
-       arp_pkt = (struct arp_hdr *)((char *)eth_pkt + sizeof(struct ether_hdr));
+       arp_pkt = (struct rte_arp_hdr *)((char *)eth_pkt + sizeof(struct rte_ether_hdr));
        initialize_arp_header(arp_pkt, &client_mac, &bond_mac, ip_client1, ip_host,
-                       ARP_OP_REPLY);
+                       RTE_ARP_OP_REPLY);
        virtual_ethdev_add_mbufs_to_rx_queue(test_params->slave_port_ids[0], &pkt,
                        1);
 
        pkt = rte_pktmbuf_alloc(test_params->mbuf_pool);
        memcpy(client_mac.addr_bytes, mac_client2, ETHER_ADDR_LEN);
-       eth_pkt = rte_pktmbuf_mtod(pkt, struct ether_hdr *);
+       eth_pkt = rte_pktmbuf_mtod(pkt, struct rte_ether_hdr *);
        initialize_eth_header(eth_pkt, &bond_mac, &client_mac, ETHER_TYPE_ARP, 0,
                        0);
-       arp_pkt = (struct arp_hdr *)((char *)eth_pkt + sizeof(struct ether_hdr));
+       arp_pkt = (struct rte_arp_hdr *)((char *)eth_pkt + sizeof(struct rte_ether_hdr));
        initialize_arp_header(arp_pkt, &client_mac, &bond_mac, ip_client2, ip_host,
-                       ARP_OP_REPLY);
+                       RTE_ARP_OP_REPLY);
        virtual_ethdev_add_mbufs_to_rx_queue(test_params->slave_port_ids[0], &pkt,
                        1);
 
        pkt = rte_pktmbuf_alloc(test_params->mbuf_pool);
        memcpy(client_mac.addr_bytes, mac_client3, ETHER_ADDR_LEN);
-       eth_pkt = rte_pktmbuf_mtod(pkt, struct ether_hdr *);
+       eth_pkt = rte_pktmbuf_mtod(pkt, struct rte_ether_hdr *);
        initialize_eth_header(eth_pkt, &bond_mac, &client_mac, ETHER_TYPE_ARP, 0,
                        0);
-       arp_pkt = (struct arp_hdr *)((char *)eth_pkt + sizeof(struct ether_hdr));
+       arp_pkt = (struct rte_arp_hdr *)((char *)eth_pkt + sizeof(struct rte_ether_hdr));
        initialize_arp_header(arp_pkt, &client_mac, &bond_mac, ip_client3, ip_host,
-                       ARP_OP_REPLY);
+                       RTE_ARP_OP_REPLY);
        virtual_ethdev_add_mbufs_to_rx_queue(test_params->slave_port_ids[0], &pkt,
                        1);
 
        pkt = rte_pktmbuf_alloc(test_params->mbuf_pool);
        memcpy(client_mac.addr_bytes, mac_client4, ETHER_ADDR_LEN);
-       eth_pkt = rte_pktmbuf_mtod(pkt, struct ether_hdr *);
+       eth_pkt = rte_pktmbuf_mtod(pkt, struct rte_ether_hdr *);
        initialize_eth_header(eth_pkt, &bond_mac, &client_mac, ETHER_TYPE_ARP, 0,
                        0);
-       arp_pkt = (struct arp_hdr *)((char *)eth_pkt + sizeof(struct ether_hdr));
+       arp_pkt = (struct rte_arp_hdr *)((char *)eth_pkt + sizeof(struct rte_ether_hdr));
        initialize_arp_header(arp_pkt, &client_mac, &bond_mac, ip_client4, ip_host,
-                       ARP_OP_REPLY);
+                       RTE_ARP_OP_REPLY);
        virtual_ethdev_add_mbufs_to_rx_queue(test_params->slave_port_ids[0], &pkt,
                        1);
 
@@ -4694,8 +4666,8 @@ test_alb_reply_from_client(void)
                nb_pkts_sum += nb_pkts;
 
                for (pkt_idx = 0; pkt_idx < nb_pkts; pkt_idx++) {
-                       eth_pkt = rte_pktmbuf_mtod(pkts_sent[pkt_idx], struct ether_hdr *);
-                       arp_pkt = (struct arp_hdr *)((char *)eth_pkt + sizeof(struct ether_hdr));
+                       eth_pkt = rte_pktmbuf_mtod(pkts_sent[pkt_idx], struct rte_ether_hdr *);
+                       arp_pkt = (struct rte_arp_hdr *)((char *)eth_pkt + sizeof(struct rte_ether_hdr));
 
                        if (slave_idx%2 == 0) {
                                if (!is_same_ether_addr(slave_mac1, &arp_pkt->arp_data.arp_sha)) {
@@ -4725,9 +4697,9 @@ test_end:
 static int
 test_alb_receive_vlan_reply(void)
 {
-       struct ether_hdr *eth_pkt;
-       struct vlan_hdr *vlan_pkt;
-       struct arp_hdr *arp_pkt;
+       struct rte_ether_hdr *eth_pkt;
+       struct rte_vlan_hdr *vlan_pkt;
+       struct rte_arp_hdr *arp_pkt;
 
        struct rte_mbuf *pkt;
        struct rte_mbuf *pkts_sent[MAX_PKT_BURST];
@@ -4735,7 +4707,7 @@ test_alb_receive_vlan_reply(void)
        int slave_idx, nb_pkts, pkt_idx;
        int retval = 0;
 
-       struct ether_addr bond_mac, client_mac;
+       struct rte_ether_addr bond_mac, client_mac;
 
        TEST_ASSERT_SUCCESS(
                        initialize_bonded_device_with_slaves(BONDING_MODE_ALB,
@@ -4759,18 +4731,18 @@ test_alb_receive_vlan_reply(void)
         */
        pkt = rte_pktmbuf_alloc(test_params->mbuf_pool);
        memcpy(client_mac.addr_bytes, mac_client1, ETHER_ADDR_LEN);
-       eth_pkt = rte_pktmbuf_mtod(pkt, struct ether_hdr *);
+       eth_pkt = rte_pktmbuf_mtod(pkt, struct rte_ether_hdr *);
        initialize_eth_header(eth_pkt, &bond_mac, &client_mac, ETHER_TYPE_VLAN, 0,
                        0);
-       vlan_pkt = (struct vlan_hdr *)((char *)(eth_pkt + 1));
+       vlan_pkt = (struct rte_vlan_hdr *)((char *)(eth_pkt + 1));
        vlan_pkt->vlan_tci = rte_cpu_to_be_16(1);
        vlan_pkt->eth_proto = rte_cpu_to_be_16(ETHER_TYPE_VLAN);
        vlan_pkt = vlan_pkt+1;
        vlan_pkt->vlan_tci = rte_cpu_to_be_16(2);
        vlan_pkt->eth_proto = rte_cpu_to_be_16(ETHER_TYPE_ARP);
-       arp_pkt = (struct arp_hdr *)((char *)(vlan_pkt + 1));
+       arp_pkt = (struct rte_arp_hdr *)((char *)(vlan_pkt + 1));
        initialize_arp_header(arp_pkt, &client_mac, &bond_mac, ip_client1, ip_host,
-                       ARP_OP_REPLY);
+                       RTE_ARP_OP_REPLY);
        virtual_ethdev_add_mbufs_to_rx_queue(test_params->slave_port_ids[0], &pkt,
                        1);
 
@@ -4786,8 +4758,8 @@ test_alb_receive_vlan_reply(void)
                                MAX_PKT_BURST);
 
                for (pkt_idx = 0; pkt_idx < nb_pkts; pkt_idx++) {
-                       eth_pkt = rte_pktmbuf_mtod(pkts_sent[pkt_idx], struct ether_hdr *);
-                       vlan_pkt = (struct vlan_hdr *)((char *)(eth_pkt + 1));
+                       eth_pkt = rte_pktmbuf_mtod(pkts_sent[pkt_idx], struct rte_ether_hdr *);
+                       vlan_pkt = (struct rte_vlan_hdr *)((char *)(eth_pkt + 1));
                        if (vlan_pkt->vlan_tci != rte_cpu_to_be_16(1)) {
                                retval = -1;
                                goto test_end;