net: add rte prefix to ether structures
[dpdk.git] / examples / eventdev_pipeline / pipeline_common.h
index a6cc912..ef23d96 100644 (file)
@@ -99,11 +99,11 @@ struct config_data cdata;
 static __rte_always_inline void
 exchange_mac(struct rte_mbuf *m)
 {
-       struct ether_hdr *eth;
-       struct ether_addr addr;
+       struct rte_ether_hdr *eth;
+       struct rte_ether_addr addr;
 
        /* change mac addresses on packet (to use mbuf data) */
-       eth = rte_pktmbuf_mtod(m, struct ether_hdr *);
+       eth = rte_pktmbuf_mtod(m, struct rte_ether_hdr *);
        ether_addr_copy(&eth->d_addr, &addr);
        ether_addr_copy(&addr, &eth->d_addr);
 }