]> git.droids-corp.org - dpdk.git/commitdiff
net/hns3: remove unused variables
authorHuisong Li <lihuisong@huawei.com>
Sat, 22 Jan 2022 01:51:34 +0000 (09:51 +0800)
committerFerruh Yigit <ferruh.yigit@intel.com>
Thu, 27 Jan 2022 13:39:12 +0000 (14:39 +0100)
Remove unused variables.

Signed-off-by: Huisong Li <lihuisong@huawei.com>
Acked-by: Min Hu (Connor) <humin29@huawei.com>
drivers/net/hns3/hns3_dcb.c
drivers/net/hns3/hns3_ethdev.c
drivers/net/hns3/hns3_ethdev.h

index e4417e87fd42c3c21784c734278588c8367cd445..73693786d15bc00098c78ae0daee40205d0f6943 100644 (file)
@@ -750,19 +750,9 @@ static int
 hns3_dcb_update_tc_queue_mapping(struct hns3_hw *hw, uint16_t nb_rx_q,
                                 uint16_t nb_tx_q)
 {
-       struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
-       struct hns3_pf *pf = &hns->pf;
-       int ret;
-
        hw->num_tc = hw->dcb_info.num_tc;
-       ret = hns3_queue_to_tc_mapping(hw, nb_rx_q, nb_tx_q);
-       if (ret)
-               return ret;
 
-       if (!hns->is_vf)
-               memcpy(pf->prio_tc, hw->dcb_info.prio_tc, HNS3_MAX_USER_PRIO);
-
-       return 0;
+       return hns3_queue_to_tc_mapping(hw, nb_rx_q, nb_tx_q);
 }
 
 int
index 0f6d238f6f066f2ab0dd06b4ba41e86143958003..90eb6340a92f2da5ec67c9807b3583ec820522c7 100644 (file)
@@ -2546,9 +2546,6 @@ hns3_parse_cfg(struct hns3_cfg *cfg, struct hns3_cmd_desc *desc)
        cfg->media_type = hns3_get_field(rte_le_to_cpu_32(req->param[1]),
                                         HNS3_CFG_MEDIA_TP_M,
                                         HNS3_CFG_MEDIA_TP_S);
-       cfg->rx_buf_len = hns3_get_field(rte_le_to_cpu_32(req->param[1]),
-                                        HNS3_CFG_RX_BUF_LEN_M,
-                                        HNS3_CFG_RX_BUF_LEN_S);
        /* get mac address */
        mac_addr_tmp = rte_le_to_cpu_32(req->param[2]);
        mac_addr_tmp_high = hns3_get_field(rte_le_to_cpu_32(req->param[3]),
index 153e67337f63b27305c6d0ee9b75ed65bfb93fae..1dd388625b2a9f5864dbee54d249487176056c55 100644 (file)
@@ -156,7 +156,6 @@ struct hns3_tc_queue_info {
 struct hns3_cfg {
        uint8_t tc_num;
        uint16_t tqp_desc_num;
-       uint16_t rx_buf_len;
        uint16_t rss_size_max;
        uint8_t phy_addr;
        uint8_t media_type;
@@ -804,7 +803,6 @@ struct hns3_pf {
        uint8_t tc_max; /* max number of tc driver supported */
        uint8_t local_max_tc; /* max number of local tc */
        uint8_t pfc_max;
-       uint8_t prio_tc[HNS3_MAX_USER_PRIO]; /* TC indexed by prio */
        uint16_t pause_time;
        bool support_fc_autoneg;       /* support FC autonegotiate */
        bool support_multi_tc_pause;