Re: [PATCH V4 net-next 3/9] net: ena: add explicit casting to variables

2020-12-08 Thread Shay Agroskin
Alexander Duyck writes: On Fri, Dec 4, 2020 at 4:15 AM wrote: From: Arthur Kiyanovski This patch adds explicit casting to some implicit conversions in the ena driver. The implicit conversions fail some of our static checkers that search for accidental conversions in our driver. Adding

Re: [PATCH V4 net-next 3/9] net: ena: add explicit casting to variables

2020-12-07 Thread Shay Agroskin
Alexander Duyck writes: On Fri, Dec 4, 2020 at 4:15 AM wrote: From: Arthur Kiyanovski This patch adds explicit casting to some implicit conversions in the ena driver. The implicit conversions fail some of our static checkers that search for accidental conversions in our driver. Adding

Re: [PATCH V4 net-next 3/9] net: ena: add explicit casting to variables

2020-12-07 Thread Alexander Duyck
On Fri, Dec 4, 2020 at 4:15 AM wrote: > > From: Arthur Kiyanovski > > This patch adds explicit casting to some implicit conversions in the ena > driver. The implicit conversions fail some of our static checkers that > search for accidental conversions in our driver. > Adding this cast won't affec

[PATCH V4 net-next 3/9] net: ena: add explicit casting to variables

2020-12-04 Thread akiyano
From: Arthur Kiyanovski This patch adds explicit casting to some implicit conversions in the ena driver. The implicit conversions fail some of our static checkers that search for accidental conversions in our driver. Adding this cast won't affect the end results, and would sooth the checkers. Si