[PATCH v3] scsi: ibmvscsi: Don't use rc uninitialized in ibmvscsi_do_work

Tyrel Datwyler tyreld at linux.vnet.ibm.com
Tue Jun 4 09:58:16 AEST 2019


On 06/03/2019 04:44 PM, Nathan Chancellor wrote:
> clang warns:
> 
> drivers/scsi/ibmvscsi/ibmvscsi.c:2126:7: warning: variable 'rc' is used
> uninitialized whenever switch case is taken [-Wsometimes-uninitialized]
>         case IBMVSCSI_HOST_ACTION_NONE:
>              ^~~~~~~~~~~~~~~~~~~~~~~~~
> drivers/scsi/ibmvscsi/ibmvscsi.c:2151:6: note: uninitialized use occurs
> here
>         if (rc) {
>             ^~
> 
> Initialize rc in the IBMVSCSI_HOST_ACTION_UNBLOCK case statement then
> shuffle IBMVSCSI_HOST_ACTION_NONE down to the default case statement and
> make it return early so that rc is never used uninitialized in this
> function.
> 
> Fixes: 035a3c4046b5 ("scsi: ibmvscsi: redo driver work thread to use enum action states")
> Link: https://github.com/ClangBuiltLinux/linux/issues/502
> Suggested-by: Michael Ellerman <mpe at ellerman.id.au>
> Suggested-by: Tyrel Datwyler <tyreld at linux.ibm.com>
> Signed-off-by: Nathan Chancellor <natechancellor at gmail.com>

Acked-by: Tyrel Datwyler <tyreld at linux.ibm.com>



More information about the Linuxppc-dev mailing list