net: add rte prefix to ether structures
[dpdk.git] / examples / l3fwd / l3fwd_em.c
index fa8f82b..64e79b9 100644 (file)
@@ -561,7 +561,7 @@ em_check_ptype(int portid)
 static inline void
 em_parse_ptype(struct rte_mbuf *m)
 {
-       struct ether_hdr *eth_hdr;
+       struct rte_ether_hdr *eth_hdr;
        uint32_t packet_type = RTE_PTYPE_UNKNOWN;
        uint16_t ether_type;
        void *l3;
@@ -569,9 +569,9 @@ em_parse_ptype(struct rte_mbuf *m)
        struct ipv4_hdr *ipv4_hdr;
        struct ipv6_hdr *ipv6_hdr;
 
-       eth_hdr = rte_pktmbuf_mtod(m, struct ether_hdr *);
+       eth_hdr = rte_pktmbuf_mtod(m, struct rte_ether_hdr *);
        ether_type = eth_hdr->ether_type;
-       l3 = (uint8_t *)eth_hdr + sizeof(struct ether_hdr);
+       l3 = (uint8_t *)eth_hdr + sizeof(struct rte_ether_hdr);
        if (ether_type == rte_cpu_to_be_16(ETHER_TYPE_IPv4)) {
                ipv4_hdr = (struct ipv4_hdr *)l3;
                hdr_len = (ipv4_hdr->version_ihl & IPV4_HDR_IHL_MASK) *