Re: [dpdk-dev] [PATCH] testpmd: remove unused member from lcore structure

2021-02-05 Thread Thomas Monjalon
About the title: - the prefix should be app/testpmd - it is not exactly an lcore structure I would propose: app/testpmd: remove unused struct member 05/02/2021 20:08, Kathleen Capella: > The tx_queue member of the fwd_lcore struct is unused as it is already > part of the fwd_stream

[dpdk-dev] [PATCH] testpmd: remove unused member from lcore structure

2021-02-05 Thread Kathleen Capella
The tx_queue member of the fwd_lcore struct is unused as it is already part of the fwd_stream structure. Deleting helps improve code readability. Signed-off-by: Kathleen Capella Reviewed-by: Honnappa Nagarahalli --- app/test-pmd/testpmd.h | 1 - 1 file changed, 1 deletion(-) diff --git a/app/t