Re: [dpdk-dev] [PATCH] app: fix redundant comparison

2021-07-23 Thread Min Hu (Connor)
Agreed, This patch can be rejected, thanks. 在 2021/7/24 4:16, Andrew Rybchenko 写道: On 4/19/21 3:44 PM, David Hunt wrote: Hi Connor, On 19/4/2021 1:29 PM, Min Hu (Connor) wrote: The return value of 'rte_eal_cleanup' is always zero, so comparison with zero is redundant. This patch fixed it by

Re: [dpdk-dev] [PATCH] app: fix redundant comparison

2021-07-23 Thread Andrew Rybchenko
On 4/19/21 3:44 PM, David Hunt wrote: Hi Connor, On 19/4/2021 1:29 PM, Min Hu (Connor) wrote: The return value of 'rte_eal_cleanup' is always zero, so comparison with zero is redundant. This patch fixed it by deleting the redundant comparison. Fixes: 67684d1e87b6 ("app/procinfo: call EAL clea

Re: [dpdk-dev] [PATCH] app: fix redundant comparison

2021-04-19 Thread Stephen Hemminger
On Mon, 19 Apr 2021 20:29:51 +0800 "Min Hu (Connor)" wrote: > The return value of 'rte_eal_cleanup' is always zero, so comparison > with zero is redundant. > > This patch fixed it by deleting the redundant comparison. > > Fixes: 67684d1e87b6 ("app/procinfo: call EAL cleanup before exit") > Fixe

Re: [dpdk-dev] [PATCH] app: fix redundant comparison

2021-04-19 Thread David Hunt
Hi Connor, On 19/4/2021 1:29 PM, Min Hu (Connor) wrote: The return value of 'rte_eal_cleanup' is always zero, so comparison with zero is redundant. This patch fixed it by deleting the redundant comparison. Fixes: 67684d1e87b6 ("app/procinfo: call EAL cleanup before exit") Fixes: b68a82425da4 (

[dpdk-dev] [PATCH] app: fix redundant comparison

2021-04-19 Thread Min Hu (Connor)
The return value of 'rte_eal_cleanup' is always zero, so comparison with zero is redundant. This patch fixed it by deleting the redundant comparison. Fixes: 67684d1e87b6 ("app/procinfo: call EAL cleanup before exit") Fixes: b68a82425da4 ("app/compress-perf: add performance measurement") Fixes: 5e