Re: [PATCH net] ibmvnic: Fix returning uninitialized return code

2020-09-17 Thread Thomas Falcon
On 9/17/20 1:07 AM, Saeed Mahameed wrote: On Wed, 2020-09-16 at 17:12 -0500, Thomas Falcon wrote: If successful, __ibmvnic_open and reset_sub_crq_queues, if no device queues exist, will return an uninitialized variable rc. Return zero on success instead. Fixes: 57a49436f4e8 ("ibmvnic: Reset s

Re: [PATCH net] ibmvnic: Fix returning uninitialized return code

2020-09-16 Thread Saeed Mahameed
On Wed, 2020-09-16 at 17:12 -0500, Thomas Falcon wrote: > If successful, __ibmvnic_open and reset_sub_crq_queues, > if no device queues exist, will return an uninitialized > variable rc. Return zero on success instead. > > Fixes: 57a49436f4e8 ("ibmvnic: Reset sub-crqs during driver reset") > Fixes

[PATCH net] ibmvnic: Fix returning uninitialized return code

2020-09-16 Thread Thomas Falcon
If successful, __ibmvnic_open and reset_sub_crq_queues, if no device queues exist, will return an uninitialized variable rc. Return zero on success instead. Fixes: 57a49436f4e8 ("ibmvnic: Reset sub-crqs during driver reset") Fixes: ed651a10875f ("ibmvnic: Updated reset handling") Signed-off-by: Th