]> git.droids-corp.org - dpdk.git/blobdiff - lib/librte_gso/rte_gso.h
net/octeontx: support fast mbuf free
[dpdk.git] / lib / librte_gso / rte_gso.h
index ee879968c8652c7c799e0c380fc7a64f40d64e4e..3aab297f44aaca4fd7b61dff25d9bbdd28059a52 100644 (file)
@@ -19,11 +19,11 @@ extern "C" {
 
 /* Minimum GSO segment size for TCP based packets. */
 #define RTE_GSO_SEG_SIZE_MIN (sizeof(struct rte_ether_hdr) + \
-               sizeof(struct rte_ipv4_hdr) + sizeof(struct tcp_hdr) + 1)
+               sizeof(struct rte_ipv4_hdr) + sizeof(struct rte_tcp_hdr) + 1)
 
 /* Minimum GSO segment size for UDP based packets. */
 #define RTE_GSO_UDP_SEG_SIZE_MIN (sizeof(struct rte_ether_hdr) + \
-               sizeof(struct rte_ipv4_hdr) + sizeof(struct udp_hdr) + 1)
+               sizeof(struct rte_ipv4_hdr) + sizeof(struct rte_udp_hdr) + 1)
 
 /* GSO flags for rte_gso_ctx. */
 #define RTE_GSO_FLAG_IPID_FIXED (1ULL << 0)