app/testpmd: fix build without ixgbe and bnxt PMDs
Fixes:4cfe399f65
("net/bnxt: support to set VF rxmode") Fixes:36735a932c
("net/bnxt: support set VF QOS and MAC anti spoof") Cc: stable@dpdk.org Signed-off-by: Aviad Yehezkel <aviadye@mellanox.com> Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
This commit is contained in:
parent
a76bec521a
commit
59e4985a24
@ -7494,6 +7494,8 @@ cmd_set_vf_rxmode_parsed(void *parsed_result,
|
||||
rx_mode |= ETH_VMDQ_ACCEPT_MULTICAST;
|
||||
}
|
||||
|
||||
RTE_SET_USED(is_on);
|
||||
|
||||
#ifdef RTE_LIBRTE_IXGBE_PMD
|
||||
if (ret == -ENOTSUP)
|
||||
ret = rte_pmd_ixgbe_set_vf_rxmode(res->port_id, res->vf_id,
|
||||
|
@ -3185,6 +3185,10 @@ set_vf_rate_limit(portid_t port_id, uint16_t vf, uint16_t rate, uint64_t q_msk)
|
||||
{
|
||||
int diag = -ENOTSUP;
|
||||
|
||||
RTE_SET_USED(vf);
|
||||
RTE_SET_USED(rate);
|
||||
RTE_SET_USED(q_msk);
|
||||
|
||||
#ifdef RTE_LIBRTE_IXGBE_PMD
|
||||
if (diag == -ENOTSUP)
|
||||
diag = rte_pmd_ixgbe_set_vf_rate_limit(port_id, vf, rate,
|
||||
|
Loading…
Reference in New Issue
Block a user