]> git.droids-corp.org - dpdk.git/blobdiff - examples/ip_pipeline/pipeline_rx.c
mbuf: remove the rte_pktmbuf structure
[dpdk.git] / examples / ip_pipeline / pipeline_rx.c
index e43ebfabc290279c8f9d531d076c3e5192cf59ef..7a8309c1aa277d6478439619e25354f389bbe936 100644 (file)
@@ -255,8 +255,8 @@ app_pkt_metadata_fill(struct rte_mbuf *m)
        /* Pop Ethernet header */
        if (app.ether_hdr_pop_push) {
                rte_pktmbuf_adj(m, (uint16_t)sizeof(struct ether_hdr));
-               m->pkt.vlan_macip.f.l2_len = 0;
-               m->pkt.vlan_macip.f.l3_len = sizeof(struct ipv4_hdr);
+               m->vlan_macip.f.l2_len = 0;
+               m->vlan_macip.f.l3_len = sizeof(struct ipv4_hdr);
        }
 }