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

2021-05-10 Thread Laatz, Kevin
> On Fri, May 07, 2021 at 05:20:25PM +, 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 is fixed by simply renaming the local variable. > > > > Fixes

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

2021-05-10 Thread Bruce Richardson
On Fri, May 07, 2021 at 05:20:25PM +, 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 is fixed by simply renaming the local variable. > > Fixes: 245efe544d8e

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

2021-05-08 Thread Pai G, Sunil
Tested-by: Sunil Pai G

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

2021-05-07 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 is fixed by simply renaming the local variable. Fixes: 245efe544d8e ("raw/ioat: report status of completed jobs") Reported-by: Sunil Pai G