]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
scsi: csiostor: Uninitialized data in csio_ln_vnp_read_cbfn()
authorDan Carpenter <dan.carpenter@oracle.com>
Wed, 6 Oct 2021 07:32:43 +0000 (10:32 +0300)
committerAndrea Righi <andrea.righi@canonical.com>
Tue, 4 Jan 2022 08:48:30 +0000 (09:48 +0100)
BugLink: https://bugs.launchpad.net/bugs/1951822
[ Upstream commit f4875d509a0a78ad294a1a538d534b5ba94e685a ]

This variable is just a temporary variable, used to do an endian
conversion.  The problem is that the last byte is not initialized.  After
the conversion is completely done, the last byte is discarded so it doesn't
cause a problem.  But static checkers and the KMSan runtime checker can
detect the uninitialized read and will complain about it.

Link: https://lore.kernel.org/r/20211006073242.GA8404@kili
Fixes: 5036f0a0ecd3 ("[SCSI] csiostor: Fix sparse warnings.")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
drivers/scsi/csiostor/csio_lnode.c

index dc98f51f466fb3e0d3bc51034beaad0e05d5f348..d5ac9389702327fdf6d6767324ec7f8bdaa642cb 100644 (file)
@@ -619,7 +619,7 @@ csio_ln_vnp_read_cbfn(struct csio_hw *hw, struct csio_mb *mbp)
        struct fc_els_csp *csp;
        struct fc_els_cssp *clsp;
        enum fw_retval retval;
-       __be32 nport_id;
+       __be32 nport_id = 0;
 
        retval = FW_CMD_RETVAL_G(ntohl(rsp->alloc_to_len16));
        if (retval != FW_SUCCESS) {