net/e1000: fix queue number in RSS configuration
RSS configuration works for all e1000 NICs except 82576. This patch fixes this issue by correcting queue number in RSS configuration. Fixes:424ae915ba
("net/e1000: move RSS to flow API") Fixes:ac8d22de23
("ethdev: flatten RSS configuration in flow API") Cc: stable@dpdk.org Signed-off-by: Beilei Xing <beilei.xing@intel.com> Acked-by: Wei Zhao <wei.zhao1@intel.com>
This commit is contained in:
parent
eb5a9a7639
commit
2b39bf0f75
@ -236,7 +236,8 @@ struct igb_ethertype_filter {
|
||||
struct igb_rte_flow_rss_conf {
|
||||
struct rte_flow_action_rss conf; /**< RSS parameters. */
|
||||
uint8_t key[IGB_HKEY_MAX_INDEX * sizeof(uint32_t)]; /* Hash key. */
|
||||
uint16_t queue[IGB_MAX_RX_QUEUE_NUM]; /**< Queues indices to use. */
|
||||
/* Queues indices to use. */
|
||||
uint16_t queue[IGB_MAX_RX_QUEUE_NUM_82576];
|
||||
};
|
||||
|
||||
/*
|
||||
@ -506,7 +507,8 @@ int eth_igb_syn_filter_set(struct rte_eth_dev *dev,
|
||||
int eth_igb_add_del_flex_filter(struct rte_eth_dev *dev,
|
||||
struct rte_eth_flex_filter *filter,
|
||||
bool add);
|
||||
int igb_rss_conf_init(struct igb_rte_flow_rss_conf *out,
|
||||
int igb_rss_conf_init(struct rte_eth_dev *dev,
|
||||
struct igb_rte_flow_rss_conf *out,
|
||||
const struct rte_flow_action_rss *in);
|
||||
int igb_action_rss_same(const struct rte_flow_action_rss *comp,
|
||||
const struct rte_flow_action_rss *with);
|
||||
|
@ -1307,6 +1307,7 @@ igb_parse_rss_filter(struct rte_eth_dev *dev,
|
||||
struct igb_rte_flow_rss_conf *rss_conf,
|
||||
struct rte_flow_error *error)
|
||||
{
|
||||
struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
|
||||
const struct rte_flow_action *act;
|
||||
const struct rte_flow_action_rss *rss;
|
||||
uint16_t n, index;
|
||||
@ -1357,11 +1358,14 @@ igb_parse_rss_filter(struct rte_eth_dev *dev,
|
||||
return rte_flow_error_set
|
||||
(error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ACTION, act,
|
||||
"RSS hash key must be exactly 40 bytes");
|
||||
if (rss->queue_num > RTE_DIM(rss_conf->queue))
|
||||
if (((hw->mac.type == e1000_82576) &&
|
||||
(rss->queue_num > IGB_MAX_RX_QUEUE_NUM_82576)) ||
|
||||
((hw->mac.type != e1000_82576) &&
|
||||
(rss->queue_num > IGB_MAX_RX_QUEUE_NUM)))
|
||||
return rte_flow_error_set
|
||||
(error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ACTION, act,
|
||||
"too many queues for RSS context");
|
||||
if (igb_rss_conf_init(rss_conf, rss))
|
||||
if (igb_rss_conf_init(dev, rss_conf, rss))
|
||||
return rte_flow_error_set
|
||||
(error, EINVAL, RTE_FLOW_ERROR_TYPE_ACTION, act,
|
||||
"RSS context initialization failure");
|
||||
@ -1574,7 +1578,7 @@ igb_flow_create(struct rte_eth_dev *dev,
|
||||
PMD_DRV_LOG(ERR, "failed to allocate memory");
|
||||
goto out;
|
||||
}
|
||||
igb_rss_conf_init(&rss_filter_ptr->filter_info,
|
||||
igb_rss_conf_init(dev, &rss_filter_ptr->filter_info,
|
||||
&rss_conf.conf);
|
||||
TAILQ_INSERT_TAIL(&igb_filter_rss_list,
|
||||
rss_filter_ptr, entries);
|
||||
|
@ -2851,11 +2851,17 @@ igb_txq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
|
||||
}
|
||||
|
||||
int
|
||||
igb_rss_conf_init(struct igb_rte_flow_rss_conf *out,
|
||||
igb_rss_conf_init(struct rte_eth_dev *dev,
|
||||
struct igb_rte_flow_rss_conf *out,
|
||||
const struct rte_flow_action_rss *in)
|
||||
{
|
||||
struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
|
||||
|
||||
if (in->key_len > RTE_DIM(out->key) ||
|
||||
in->queue_num > RTE_DIM(out->queue))
|
||||
((hw->mac.type == e1000_82576) &&
|
||||
(in->queue_num > IGB_MAX_RX_QUEUE_NUM_82576)) ||
|
||||
((hw->mac.type != e1000_82576) &&
|
||||
(in->queue_num > IGB_MAX_RX_QUEUE_NUM)))
|
||||
return -EINVAL;
|
||||
out->conf = (struct rte_flow_action_rss){
|
||||
.func = in->func,
|
||||
@ -2944,7 +2950,7 @@ igb_config_rss_filter(struct rte_eth_dev *dev,
|
||||
rss_conf.rss_key = rss_intel_key; /* Default hash key */
|
||||
igb_hw_rss_hash_set(hw, &rss_conf);
|
||||
|
||||
if (igb_rss_conf_init(&filter_info->rss_info, &conf->conf))
|
||||
if (igb_rss_conf_init(dev, &filter_info->rss_info, &conf->conf))
|
||||
return -EINVAL;
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user