From: Kathleen Capella Date: Tue, 9 Feb 2021 15:40:26 +0000 (+0000) Subject: app/testpmd: remove unused struct member X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=28bbeaa23bbac9db5cfc7c7282e591cbb71f43a9;p=dpdk.git app/testpmd: remove unused struct member 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 Acked-by: Thomas Monjalon --- diff --git a/app/test-pmd/testpmd.h b/app/test-pmd/testpmd.h index 4aca522859..60ddeb8f13 100644 --- a/app/test-pmd/testpmd.h +++ b/app/test-pmd/testpmd.h @@ -247,7 +247,6 @@ struct fwd_lcore { streamid_t stream_idx; /**< index of 1st stream in "fwd_streams" */ streamid_t stream_nb; /**< number of streams in "fwd_streams" */ lcoreid_t cpuid_idx; /**< index of logical core in CPU id table */ - queueid_t tx_queue; /**< TX queue to send forwarded packets */ volatile char stopped; /**< stop forwarding when set */ };