net: add rte prefix to ip structure
[dpdk.git] / test / test / test_sched.c
index f02e508..1611fc6 100644 (file)
@@ -80,14 +80,14 @@ prepare_pkt(struct rte_mbuf *mbuf)
 {
        struct rte_ether_hdr *eth_hdr;
        struct rte_vlan_hdr *vlan1, *vlan2;
-       struct ipv4_hdr *ip_hdr;
+       struct rte_ipv4_hdr *ip_hdr;
 
        /* Simulate a classifier */
        eth_hdr = rte_pktmbuf_mtod(mbuf, struct rte_ether_hdr *);
        vlan1 = (struct rte_vlan_hdr *)(&eth_hdr->ether_type );
        vlan2 = (struct rte_vlan_hdr *)((uintptr_t)&eth_hdr->ether_type + sizeof(struct rte_vlan_hdr));
        eth_hdr = (struct rte_ether_hdr *)((uintptr_t)&eth_hdr->ether_type + 2 *sizeof(struct rte_vlan_hdr));
-       ip_hdr = (struct ipv4_hdr *)((uintptr_t)eth_hdr +  sizeof(eth_hdr->ether_type));
+       ip_hdr = (struct rte_ipv4_hdr *)((uintptr_t)eth_hdr +  sizeof(eth_hdr->ether_type));
 
        vlan1->vlan_tci = rte_cpu_to_be_16(SUBPORT);
        vlan2->vlan_tci = rte_cpu_to_be_16(PIPE);