net/i40e: remove unsupported VF command
Delete 'case I40E_VIRTCHNL_OP_FCOE', as it is not necessary. The
default case reports on all unsupported commands included this one.
This also prevents warnings about a missing "break" at the end of the
"case" block.
Coverity issue: 13265
Fixes: 4861cde461
("i40e: new poll mode driver")
Signed-off-by: Helin Zhang <helin.zhang@intel.com>
Acked-by: John McNamara <john.mcnamara@intel.com>
This commit is contained in:
parent
819a5c14d1
commit
cfcf046653
@ -997,11 +997,9 @@ i40e_pf_host_handle_vf_msg(struct rte_eth_dev *dev,
|
||||
PMD_DRV_LOG(INFO, "OP_CFG_VLAN_PVID received");
|
||||
i40e_pf_host_process_cmd_cfg_pvid(vf, msg, msglen);
|
||||
break;
|
||||
/* Don't add command supported below, which will
|
||||
* return an error code.
|
||||
/* Don't add command supported below, which will
|
||||
* return an error code.
|
||||
*/
|
||||
case I40E_VIRTCHNL_OP_FCOE:
|
||||
PMD_DRV_LOG(ERR, "OP_FCOE received, not supported");
|
||||
default:
|
||||
PMD_DRV_LOG(ERR, "%u received, not supported", opcode);
|
||||
i40e_pf_host_send_msg_to_vf(vf, opcode, I40E_ERR_PARAM,
|
||||
|
Loading…
Reference in New Issue
Block a user