net: add rte prefix to ether structures
[dpdk.git] / examples / l3fwd / l3fwd_em_hlm_neon.h
index 16c8b04..3ee2304 100644 (file)
@@ -13,7 +13,7 @@ get_ipv4_5tuple(struct rte_mbuf *m0, int32x4_t mask0,
                union ipv4_5tuple_host *key)
 {
        int32x4_t tmpdata0 = vld1q_s32(rte_pktmbuf_mtod_offset(m0, int32_t *,
-                               sizeof(struct ether_hdr) +
+                               sizeof(struct rte_ether_hdr) +
                                offsetof(struct ipv4_hdr, time_to_live)));
 
        key->xmm = vandq_s32(tmpdata0, mask0);
@@ -25,17 +25,17 @@ get_ipv6_5tuple(struct rte_mbuf *m0, int32x4_t mask0,
 {
        int32x4_t tmpdata0 = vld1q_s32(
                        rte_pktmbuf_mtod_offset(m0, int *,
-                               sizeof(struct ether_hdr) +
+                               sizeof(struct rte_ether_hdr) +
                                offsetof(struct ipv6_hdr, payload_len)));
 
        int32x4_t tmpdata1 = vld1q_s32(
                        rte_pktmbuf_mtod_offset(m0, int *,
-                               sizeof(struct ether_hdr) +
+                               sizeof(struct rte_ether_hdr) +
                                offsetof(struct ipv6_hdr, payload_len) + 8));
 
        int32x4_t tmpdata2 = vld1q_s32(
                        rte_pktmbuf_mtod_offset(m0, int *,
-                               sizeof(struct ether_hdr) +
+                               sizeof(struct rte_ether_hdr) +
                                offsetof(struct ipv6_hdr, payload_len) + 16));
 
        key->xmm[0] = vandq_s32(tmpdata0, mask0);