]> git.droids-corp.org - dpdk.git/commitdiff
net/hns3: fix configuring RSS hash when rules are flushed
authorLijun Ou <oulijun@huawei.com>
Thu, 26 Mar 2020 07:14:31 +0000 (15:14 +0800)
committerFerruh Yigit <ferruh.yigit@intel.com>
Tue, 21 Apr 2020 11:57:04 +0000 (13:57 +0200)
Currently, when performing test case as follow:
1. Run testpmd application based on hns3 network engine with multiple
   receive queues(--rxq=N --txq=N, N>1).
2. Create the special RSS rules by "create flow ..." command in the
   command prompt of the testpmd application.
3. Flush the RSS rules created in step 2 by "flow flush ..." command.
4. Enable RSS by "port config all rss all" command.
In step 4, the command exeuctes successfully. This phenomenon is
inconsistent with the expectation. The API function named
rte_eth_dev_rss_hash_update called in the command should return error
and the command should fail.

This patch fixes it by adding a flag for disabling RSS in the driver.
When RSS rules is flushed, we set the the flag with true, and the
'.rss_hash_update' ops implementation function named
hns3_dev_rss_hash_update return -EINVAL.

Fixes: c37ca66f2b27 ("net/hns3: support RSS")
Cc: stable@dpdk.org
Signed-off-by: Lijun Ou <oulijun@huawei.com>
Signed-off-by: Wei Hu (Xavier) <xavier.huwei@huawei.com>
drivers/net/hns3/hns3_ethdev.c
drivers/net/hns3/hns3_ethdev.h
drivers/net/hns3/hns3_ethdev_vf.c
drivers/net/hns3/hns3_flow.c
drivers/net/hns3/hns3_rss.c

index 1d19de0e67b3aaba38346b2df801ca835a242cac..86676390fec995c6a6e0ce17ce53f2d116ddd73c 100644 (file)
@@ -2663,6 +2663,7 @@ hns3_get_board_configuration(struct hns3_hw *hw)
 
        hw->mac.media_type = cfg.media_type;
        hw->rss_size_max = cfg.rss_size_max;
+       hw->rss_dis_flag = false;
        hw->rx_buf_len = cfg.rx_buf_len;
        memcpy(hw->mac.mac_addr, cfg.mac_addr, RTE_ETHER_ADDR_LEN);
        hw->mac.phy_addr = cfg.phy_addr;
index 28484188a645f7806bc9e510f2c7782d18d59c6f..0423e64ea0a1a403dc1420319784f907e11584e1 100644 (file)
@@ -368,6 +368,7 @@ struct hns3_hw {
 
        /* The configuration info of RSS */
        struct hns3_rss_conf rss_info;
+       bool rss_dis_flag; /* disable rss flag. true: disable, false: enable */
 
        uint8_t num_tc;             /* Total number of enabled TCs */
        uint8_t hw_tc_map;
index 3c72976f3d4421a20c19e42b050ac569bda04414..08ae58a794631570ed2c86badfa7e46e04c96e6d 100644 (file)
@@ -1022,6 +1022,7 @@ hns3vf_get_configuration(struct hns3_hw *hw)
        int ret;
 
        hw->mac.media_type = HNS3_MEDIA_TYPE_NONE;
+       hw->rss_dis_flag = false;
 
        /* Get queue configuration from PF */
        ret = hns3vf_get_queue_info(hw);
index 53708d20549fde3dfc6dbcecb089272c49d1e137..aef301a8a7ad25a2d8fe03b26dd785692f86d836 100644 (file)
@@ -1333,6 +1333,7 @@ hns3_disable_rss(struct hns3_hw *hw)
 
        /* Disable RSS */
        hw->rss_info.conf.types = 0;
+       hw->rss_dis_flag = true;
 
        return 0;
 }
index 737d5f10937f245775366a1060d8a6528a2b8ccb..95a637ddc22e1924179ae99b45fcc2df78ef6bcd 100644 (file)
@@ -261,6 +261,9 @@ hns3_dev_rss_hash_update(struct rte_eth_dev *dev,
        uint8_t *key = rss_conf->rss_key;
        int ret;
 
+       if (hw->rss_dis_flag)
+               return -EINVAL;
+
        rte_spinlock_lock(&hw->lock);
        ret = hns3_set_rss_tuple_by_rss_hf(hw, tuple, rss_hf);
        if (ret)