]> git.droids-corp.org - dpdk.git/blobdiff - drivers/net/vmxnet3/vmxnet3_rxtx.c
mbuf: remove packet type from offload flags
[dpdk.git] / drivers / net / vmxnet3 / vmxnet3_rxtx.c
index 39ad6ef841121699a1c277b0ddd6652392a95574..4de5d8968c5b57e3b661ac284d10a124dc9c5202 100644 (file)
@@ -520,17 +520,9 @@ vmxnet3_rx_offload(const Vmxnet3_RxCompDesc *rcd, struct rte_mbuf *rxm)
                struct ipv4_hdr *ip = (struct ipv4_hdr *)(eth + 1);
 
                if (((ip->version_ihl & 0xf) << 2) > (int)sizeof(struct ipv4_hdr))
-#ifdef RTE_NEXT_ABI
                        rxm->packet_type = RTE_PTYPE_L3_IPV4_EXT;
-#else
-                       rxm->ol_flags |= PKT_RX_IPV4_HDR_EXT;
-#endif
                else
-#ifdef RTE_NEXT_ABI
                        rxm->packet_type = RTE_PTYPE_L3_IPV4;
-#else
-                       rxm->ol_flags |= PKT_RX_IPV4_HDR;
-#endif
 
                if (!rcd->cnc) {
                        if (!rcd->ipc)