]> git.droids-corp.org - dpdk.git/blobdiff - examples/eventdev_pipeline/pipeline_common.h
net: add rte prefix to ether structures
[dpdk.git] / examples / eventdev_pipeline / pipeline_common.h
index a6cc912fbb9ecb9b99e963dad1cf22437d961cf4..ef23d963a3fe5d3ff045f36e789237b09d2d5773 100644 (file)
@@ -99,11 +99,11 @@ struct config_data cdata;
 static __rte_always_inline void
 exchange_mac(struct rte_mbuf *m)
 {
 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) */
 
        /* 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);
 }
        ether_addr_copy(&eth->d_addr, &addr);
        ether_addr_copy(&addr, &eth->d_addr);
 }