Re: [EXT] [PATCH v1 1/1] net/qede: fix redundant condition in debug code

2022-01-11 Thread Jerin Jacob
On Mon, Jan 10, 2022 at 2:13 PM Rasesh Mody wrote: > > > From: Anatoly Burakov > > Sent: Tuesday, November 30, 2021 10:29 PM > > > > External Email > > > > -- > > Expression "a && 1" is equivalent to just "a", so fix the accident

RE: [EXT] [PATCH v1 1/1] net/qede: fix redundant condition in debug code

2022-01-10 Thread Rasesh Mody
> From: Anatoly Burakov > Sent: Tuesday, November 30, 2021 10:29 PM > > External Email > > -- > Expression "a && 1" is equivalent to just "a", so fix the accidental > inclusion of > a literal in code. > > Cc: sta...@dpdk.org >

Re: [EXT] Re: [PATCH v1 1/1] net/qede: fix redundant condition in debug code

2022-01-10 Thread Igor Russkikh
> On Tue, Nov 30, 2021 at 10:29 PM Anatoly Burakov > wrote: >> >> Expression "a && 1" is equivalent to just "a", so fix the accidental >> inclusion of a literal in code. >> >> Cc: sta...@dpdk.org >> >> Fixes: ec55c118792b ("net/qede: add infrastructure for debug data >> collection") >> Cc: rm..

RE: [EXT] Re: [PATCH v1 1/1] net/qede: fix redundant condition in debug code

2022-01-09 Thread Devendra Singh Rawat
> -Original Message- > From: Jerin Jacob > Sent: Monday, January 10, 2022 12:50 PM > To: Anatoly Burakov > Cc: dpdk-dev ; Rasesh Mody ; > Devendra Singh Rawat ; Igor Russkikh > ; dpdk stable > Subject: [EXT] Re: [PATCH v1 1/1] net/qede: fix redundant c

Re: [PATCH v1 1/1] net/qede: fix redundant condition in debug code

2022-01-09 Thread Jerin Jacob
On Tue, Nov 30, 2021 at 10:29 PM Anatoly Burakov wrote: > > Expression "a && 1" is equivalent to just "a", so fix the accidental > inclusion of a literal in code. > > Cc: sta...@dpdk.org > > Fixes: ec55c118792b ("net/qede: add infrastructure for debug data collection") > Cc: rm...@marvell.com Hi

[PATCH v1 1/1] net/qede: fix redundant condition in debug code

2021-11-30 Thread Anatoly Burakov
Expression "a && 1" is equivalent to just "a", so fix the accidental inclusion of a literal in code. Cc: sta...@dpdk.org Fixes: ec55c118792b ("net/qede: add infrastructure for debug data collection") Cc: rm...@marvell.com Signed-off-by: Anatoly Burakov --- Notes: This isn't a bug, this is