From: Pavan Nikhilesh <pbhagavat...@marvell.com> Fix ether header size calculation in Tx only mode.
Coverity issue: 337684 Fixes: 01b645dcff7f ("app/testpmd: move txonly prepare in separate function") Signed-off-by: Pavan Nikhilesh <pbhagavat...@marvell.com> --- v2 Changes: - Preserve relation between destination and destination size. (Bruce) app/test-pmd/txonly.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test-pmd/txonly.c b/app/test-pmd/txonly.c index 66e63788a..2d0e1a027 100644 --- a/app/test-pmd/txonly.c +++ b/app/test-pmd/txonly.c @@ -189,7 +189,7 @@ pkt_burst_prepare(struct rte_mbuf *pkt, struct rte_mempool *mbp, /* * Copy headers in first packet segment(s). */ - copy_buf_to_pkt(eth_hdr, sizeof(eth_hdr), pkt, 0); + copy_buf_to_pkt(eth_hdr, sizeof(*eth_hdr), pkt, 0); copy_buf_to_pkt(&pkt_ip_hdr, sizeof(pkt_ip_hdr), pkt, sizeof(struct ether_hdr)); if (txonly_multi_flow) { -- 2.21.0