octeontx2-af: Fix uninitialized variable val
authorColin Ian King <colin.king@canonical.com>
Fri, 17 Sep 2021 11:57:47 +0000 (12:57 +0100)
committerDavid S. Miller <davem@davemloft.net>
Fri, 17 Sep 2021 13:00:51 +0000 (14:00 +0100)
In the case where the condition !is_rvu_otx2(rvu) is false variable
val is not initialized and can contain a garbage value. Fix this by
initializing val to zero and bit-wise or'ing in BIT_ULL(51) to val
for the true condition case of !is_rvu_otx2(rvu).

Addresses-Coverity: ("Uninitialized scalar variable")
Fixes: 4b5a3ab17c6c ("octeontx2-af: Hardware configuration for inline IPsec")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/marvell/octeontx2/af/rvu_nix.c

index ea3e03f..29b15b5 100644 (file)
@@ -4596,9 +4596,10 @@ static void nix_inline_ipsec_cfg(struct rvu *rvu, struct nix_inline_ipsec_cfg *r
 
        cpt_idx = (blkaddr == BLKADDR_NIX0) ? 0 : 1;
        if (req->enable) {
+               val = 0;
                /* Enable context prefetching */
                if (!is_rvu_otx2(rvu))
-                       val = BIT_ULL(51);
+                       val |= BIT_ULL(51);
 
                /* Set OPCODE and EGRP */
                val |= FIELD_PREP(IPSEC_GEN_CFG_EGRP, req->gen_cfg.egrp);