net: add rte prefix to IP defines
[dpdk.git] / lib / librte_port / rte_port_ras.c
index c8b2e19..403028f 100644 (file)
@@ -151,12 +151,13 @@ static void
 process_ipv4(struct rte_port_ring_writer_ras *p, struct rte_mbuf *pkt)
 {
        /* Assume there is no ethernet header */
-       struct ipv4_hdr *pkt_hdr = rte_pktmbuf_mtod(pkt, struct ipv4_hdr *);
+       struct rte_ipv4_hdr *pkt_hdr =
+               rte_pktmbuf_mtod(pkt, struct rte_ipv4_hdr *);
 
        /* Get "More fragments" flag and fragment offset */
        uint16_t frag_field = rte_be_to_cpu_16(pkt_hdr->fragment_offset);
-       uint16_t frag_offset = (uint16_t)(frag_field & IPV4_HDR_OFFSET_MASK);
-       uint16_t frag_flag = (uint16_t)(frag_field & IPV4_HDR_MF_FLAG);
+       uint16_t frag_offset = (uint16_t)(frag_field & RTE_IPV4_HDR_OFFSET_MASK);
+       uint16_t frag_flag = (uint16_t)(frag_field & RTE_IPV4_HDR_MF_FLAG);
 
        /* If it is a fragmented packet, then try to reassemble */
        if ((frag_flag == 0) && (frag_offset == 0))
@@ -182,7 +183,8 @@ static void
 process_ipv6(struct rte_port_ring_writer_ras *p, struct rte_mbuf *pkt)
 {
        /* Assume there is no ethernet header */
-       struct ipv6_hdr *pkt_hdr = rte_pktmbuf_mtod(pkt, struct ipv6_hdr *);
+       struct rte_ipv6_hdr *pkt_hdr =
+               rte_pktmbuf_mtod(pkt, struct rte_ipv6_hdr *);
 
        struct ipv6_extension_fragment *frag_hdr;
        uint16_t frag_data = 0;