mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 23:34:05 +08:00
bnxt_en: Uninitialized variable in bnxt_tc_parse_actions()
Smatch warns that:
drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c:160 bnxt_tc_parse_actions()
error: uninitialized symbol 'rc'.
"rc" is either uninitialized or set to zero here so we can just remove
the check.
Fixes: 8c95f773b4
("bnxt_en: add support for Flower based vxlan encap/decap offload")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Michael Chan <michael.chan@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b9f242047f
commit
92425c4067
@ -148,9 +148,6 @@ static int bnxt_tc_parse_actions(struct bnxt *bp,
|
||||
}
|
||||
}
|
||||
|
||||
if (rc)
|
||||
return rc;
|
||||
|
||||
if (actions->flags & BNXT_TC_ACTION_FLAG_FWD) {
|
||||
if (actions->flags & BNXT_TC_ACTION_FLAG_TUNNEL_ENCAP) {
|
||||
/* dst_fid is PF's fid */
|
||||
@ -164,7 +161,7 @@ static int bnxt_tc_parse_actions(struct bnxt *bp,
|
||||
}
|
||||
}
|
||||
|
||||
return rc;
|
||||
return 0;
|
||||
}
|
||||
|
||||
#define GET_KEY(flow_cmd, key_type) \
|
||||
|
Loading…
Reference in New Issue
Block a user