From: Lance Richardson Date: Tue, 30 Mar 2021 13:23:28 +0000 (-0400) Subject: test: fix TCP header initialization X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=9fdba32788d4adbac196ba0bb9398ba8c2d0d4bc;p=dpdk.git test: fix TCP header initialization Initialize TCP data offset field with TCP header length, this field is used to derive L4 header length and by hardware to validate a TCP header. Fixes: 41f72ec94074 ("test: add packet burst generator functions") Cc: stable@dpdk.org Signed-off-by: Lance Richardson Reviewed-by: Ferruh Yigit --- diff --git a/app/test/packet_burst_generator.c b/app/test/packet_burst_generator.c index f203f9d09e..c05ea7ad51 100644 --- a/app/test/packet_burst_generator.c +++ b/app/test/packet_burst_generator.c @@ -117,6 +117,7 @@ initialize_tcp_header(struct rte_tcp_hdr *tcp_hdr, uint16_t src_port, memset(tcp_hdr, 0, sizeof(struct rte_tcp_hdr)); tcp_hdr->src_port = rte_cpu_to_be_16(src_port); tcp_hdr->dst_port = rte_cpu_to_be_16(dst_port); + tcp_hdr->data_off = (sizeof(struct rte_tcp_hdr) << 2) & 0xF0; return pkt_len; }