net: add rte prefix to IP structure
[dpdk.git] / lib / librte_gro / gro_tcp4.h
index d979248..0a42a1a 100644 (file)
@@ -24,8 +24,8 @@
 
 /* Header fields representing a TCP/IPv4 flow */
 struct tcp4_flow_key {
-       struct ether_addr eth_saddr;
-       struct ether_addr eth_daddr;
+       struct rte_ether_addr eth_saddr;
+       struct rte_ether_addr eth_daddr;
        uint32_t ip_src_addr;
        uint32_t ip_dst_addr;
 
@@ -187,8 +187,8 @@ uint32_t gro_tcp4_tbl_pkt_count(void *tbl);
 static inline int
 is_same_tcp4_flow(struct tcp4_flow_key k1, struct tcp4_flow_key k2)
 {
-       return (is_same_ether_addr(&k1.eth_saddr, &k2.eth_saddr) &&
-                       is_same_ether_addr(&k1.eth_daddr, &k2.eth_daddr) &&
+       return (rte_is_same_ether_addr(&k1.eth_saddr, &k2.eth_saddr) &&
+                       rte_is_same_ether_addr(&k1.eth_daddr, &k2.eth_daddr) &&
                        (k1.ip_src_addr == k2.ip_src_addr) &&
                        (k1.ip_dst_addr == k2.ip_dst_addr) &&
                        (k1.recv_ack == k2.recv_ack) &&
@@ -269,11 +269,11 @@ check_seq_option(struct gro_tcp4_item *item,
                uint8_t is_atomic)
 {
        struct rte_mbuf *pkt_orig = item->firstseg;
-       struct ipv4_hdr *iph_orig;
+       struct rte_ipv4_hdr *iph_orig;
        struct tcp_hdr *tcph_orig;
        uint16_t len, tcp_hl_orig;
 
-       iph_orig = (struct ipv4_hdr *)(rte_pktmbuf_mtod(pkt_orig, char *) +
+       iph_orig = (struct rte_ipv4_hdr *)(rte_pktmbuf_mtod(pkt_orig, char *) +
                        l2_offset + pkt_orig->l2_len);
        tcph_orig = (struct tcp_hdr *)((char *)iph_orig + pkt_orig->l3_len);
        tcp_hl_orig = pkt_orig->l4_len;