[dpdk-dev] [PATCH v4 01/12] ixgbe: support VMDq RSS in non-SRIOV environment

Vincent JARDIN vincent.jardin at 6wind.com
Wed Aug 12 10:22:49 CEST 2015


On 12/08/2015 10:02, Ouyang Changchun wrote:
> +#define VMDQ_RSS_RX_QUEUE_NUM_MAX 4
> +
> +static int
> +rte_eth_dev_check_vmdq_rss_rxq_num(__rte_unused uint8_t port_id, uint16_t nb_rx_q)
> +{
> +	if (nb_rx_q > VMDQ_RSS_RX_QUEUE_NUM_MAX)
> +		return -EINVAL;
> +	return 0;
> +}
> +

it is an ixgbe limitation, so, it should not be a included into 
librte_ether/rte_ethdev.c




More information about the dev mailing list