net: add rte prefix to ether structures
[dpdk.git] / app / test-pmd / macswap_neon.h
index bdf416a..df6c260 100644 (file)
@@ -16,7 +16,7 @@ static inline void
 do_macswap(struct rte_mbuf *pkts[], uint16_t nb,
                struct rte_port *txp)
 {
-       struct ether_hdr *eth_hdr[4];
+       struct rte_ether_hdr *eth_hdr[4];
        struct rte_mbuf *mb[4];
        uint64_t ol_flags;
        int i;
@@ -46,16 +46,16 @@ do_macswap(struct rte_mbuf *pkts[], uint16_t nb,
                }
 
                mb[0] = pkts[i++];
-               eth_hdr[0] = rte_pktmbuf_mtod(mb[0], struct ether_hdr *);
+               eth_hdr[0] = rte_pktmbuf_mtod(mb[0], struct rte_ether_hdr *);
 
                mb[1] = pkts[i++];
-               eth_hdr[1] = rte_pktmbuf_mtod(mb[1], struct ether_hdr *);
+               eth_hdr[1] = rte_pktmbuf_mtod(mb[1], struct rte_ether_hdr *);
 
                mb[2] = pkts[i++];
-               eth_hdr[2] = rte_pktmbuf_mtod(mb[2], struct ether_hdr *);
+               eth_hdr[2] = rte_pktmbuf_mtod(mb[2], struct rte_ether_hdr *);
 
                mb[3] = pkts[i++];
-               eth_hdr[3] = rte_pktmbuf_mtod(mb[3], struct ether_hdr *);
+               eth_hdr[3] = rte_pktmbuf_mtod(mb[3], struct rte_ether_hdr *);
 
                v0 = vld1q_u8((uint8_t const *)eth_hdr[0]);
                v1 = vld1q_u8((uint8_t const *)eth_hdr[1]);
@@ -83,7 +83,7 @@ do_macswap(struct rte_mbuf *pkts[], uint16_t nb,
                if (i < nb - 1)
                        rte_prefetch0(rte_pktmbuf_mtod(pkts[i+1], void *));
                mb[0] = pkts[i];
-               eth_hdr[0] = rte_pktmbuf_mtod(mb[0], struct ether_hdr *);
+               eth_hdr[0] = rte_pktmbuf_mtod(mb[0], struct rte_ether_hdr *);
 
                /* Swap dest and src mac addresses. */
                v0 = vld1q_u8((uint8_t const *)eth_hdr[0]);