Re: [dpdk-dev] [PATCH v2] raw/ioat: fix parameter shadow warning

2021-05-11 Thread Thomas Monjalon
10/05/2021 16:48, Bruce Richardson: > On Mon, May 10, 2021 at 04:06:00PM +0200, David Marchand wrote: > > On Mon, May 10, 2021 at 2:55 PM Kevin Laatz wrote: > > > > > > In the function __idxd_completed_ops() we have a parameter shadow warning > > > due to a local variable having the same name as o

Re: [dpdk-dev] [PATCH v2] raw/ioat: fix parameter shadow warning

2021-05-10 Thread Bruce Richardson
On Mon, May 10, 2021 at 04:06:00PM +0200, David Marchand wrote: > On Mon, May 10, 2021 at 2:55 PM Kevin Laatz wrote: > > > > In the function __idxd_completed_ops() we have a parameter shadow warning > > due to a local variable having the same name as one of the function > > parameters. This issue

Re: [dpdk-dev] [PATCH v2] raw/ioat: fix parameter shadow warning

2021-05-10 Thread David Marchand
On Mon, May 10, 2021 at 2:55 PM Kevin Laatz wrote: > > In the function __idxd_completed_ops() we have a parameter shadow warning > due to a local variable having the same name as one of the function > parameters. This issue is fixed by simply renaming the local variable. > > This warning was disco

Re: [dpdk-dev] [PATCH v2] raw/ioat: fix parameter shadow warning

2021-05-10 Thread Bruce Richardson
On Mon, May 10, 2021 at 12:55:14PM +, Kevin Laatz wrote: > In the function __idxd_completed_ops() we have a parameter shadow warning > due to a local variable having the same name as one of the function > parameters. This issue is fixed by simply renaming the local variable. > > This warning w

[dpdk-dev] [PATCH v2] raw/ioat: fix parameter shadow warning

2021-05-10 Thread Kevin Laatz
In the function __idxd_completed_ops() we have a parameter shadow warning due to a local variable having the same name as one of the function parameters. This issue is fixed by simply renaming the local variable. This warning was discovered during an OVS build with DPDK 21.05-rc2. The OVS build pa