Re: [PATCH][next] io_uring: remove redundant initialization of variable ret

2021-02-10 Thread Jens Axboe
On 2/10/21 1:00 PM, Colin King wrote: > From: Colin Ian King > > The variable ret is being initialized with a value that is never read > and it is being updated later with a new value. The initialization is > redundant and can be removed. Applied, thanks. -- Jens Axboe

Re: [PATCH][next] io_uring: remove redundant initialization of variable ret

2021-02-10 Thread Chaitanya Kulkarni
On 2/10/21 12:02, Colin King wrote: > From: Colin Ian King > > The variable ret is being initialized with a value that is never read > and it is being updated later with a new value. The initialization is > redundant and can be removed. > > Addresses-Coverity: ("Unused value") > Fixes: b63534c41e

[PATCH][next] io_uring: remove redundant initialization of variable ret

2021-02-10 Thread Colin King
From: Colin Ian King The variable ret is being initialized with a value that is never read and it is being updated later with a new value. The initialization is redundant and can be removed. Addresses-Coverity: ("Unused value") Fixes: b63534c41e20 ("io_uring: re-issue block requests that failed