net/hns3: simplify process of some return values
[dpdk.git] / drivers / net / hns3 / hns3_rss.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2018-2019 Hisilicon Limited.
3  */
4
5 #include <stdbool.h>
6 #include <rte_ethdev.h>
7 #include <rte_io.h>
8 #include <rte_malloc.h>
9 #include <rte_memcpy.h>
10 #include <rte_spinlock.h>
11
12 #include "hns3_ethdev.h"
13 #include "hns3_logs.h"
14
15 /*
16  * The hash key used for rss initialization.
17  */
18 static const uint8_t hns3_hash_key[] = {
19         0x6D, 0x5A, 0x56, 0xDA, 0x25, 0x5B, 0x0E, 0xC2,
20         0x41, 0x67, 0x25, 0x3D, 0x43, 0xA3, 0x8F, 0xB0,
21         0xD0, 0xCA, 0x2B, 0xCB, 0xAE, 0x7B, 0x30, 0xB4,
22         0x77, 0xCB, 0x2D, 0xA3, 0x80, 0x30, 0xF2, 0x0C,
23         0x6A, 0x42, 0xB7, 0x3B, 0xBE, 0xAC, 0x01, 0xFA
24 };
25
26 /*
27  * rss_generic_config command function, opcode:0x0D01.
28  * Used to set algorithm, key_offset and hash key of rss.
29  */
30 int
31 hns3_set_rss_algo_key(struct hns3_hw *hw, uint8_t hash_algo, const uint8_t *key)
32 {
33 #define HNS3_KEY_OFFSET_MAX     3
34 #define HNS3_SET_HASH_KEY_BYTE_FOUR     2
35
36         struct hns3_rss_generic_config_cmd *req;
37         struct hns3_cmd_desc desc;
38         uint32_t key_offset, key_size;
39         const uint8_t *key_cur;
40         uint8_t cur_offset;
41         int ret;
42
43         req = (struct hns3_rss_generic_config_cmd *)desc.data;
44
45         /*
46          * key_offset=0, hash key byte0~15 is set to hardware.
47          * key_offset=1, hash key byte16~31 is set to hardware.
48          * key_offset=2, hash key byte32~39 is set to hardware.
49          */
50         for (key_offset = 0; key_offset < HNS3_KEY_OFFSET_MAX; key_offset++) {
51                 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_RSS_GENERIC_CONFIG,
52                                           false);
53
54                 req->hash_config |= (hash_algo & HNS3_RSS_HASH_ALGO_MASK);
55                 req->hash_config |= (key_offset << HNS3_RSS_HASH_KEY_OFFSET_B);
56
57                 if (key_offset == HNS3_SET_HASH_KEY_BYTE_FOUR)
58                         key_size = HNS3_RSS_KEY_SIZE - HNS3_RSS_HASH_KEY_NUM *
59                         HNS3_SET_HASH_KEY_BYTE_FOUR;
60                 else
61                         key_size = HNS3_RSS_HASH_KEY_NUM;
62
63                 cur_offset = key_offset * HNS3_RSS_HASH_KEY_NUM;
64                 key_cur = key + cur_offset;
65                 memcpy(req->hash_key, key_cur, key_size);
66
67                 ret = hns3_cmd_send(hw, &desc, 1);
68                 if (ret) {
69                         hns3_err(hw, "Configure RSS algo key failed %d", ret);
70                         return ret;
71                 }
72         }
73         /* Update the shadow RSS key with user specified */
74         memcpy(hw->rss_info.key, key, HNS3_RSS_KEY_SIZE);
75         return 0;
76 }
77
78 /*
79  * Used to configure the tuple selection for RSS hash input.
80  */
81 static int
82 hns3_set_rss_input_tuple(struct hns3_hw *hw)
83 {
84         struct hns3_rss_conf *rss_config = &hw->rss_info;
85         struct hns3_rss_input_tuple_cmd *req;
86         struct hns3_cmd_desc desc_tuple;
87         int ret;
88
89         hns3_cmd_setup_basic_desc(&desc_tuple, HNS3_OPC_RSS_INPUT_TUPLE, false);
90
91         req = (struct hns3_rss_input_tuple_cmd *)desc_tuple.data;
92
93         req->ipv4_tcp_en = rss_config->rss_tuple_sets.ipv4_tcp_en;
94         req->ipv4_udp_en = rss_config->rss_tuple_sets.ipv4_udp_en;
95         req->ipv4_sctp_en = rss_config->rss_tuple_sets.ipv4_sctp_en;
96         req->ipv4_fragment_en = rss_config->rss_tuple_sets.ipv4_fragment_en;
97         req->ipv6_tcp_en = rss_config->rss_tuple_sets.ipv6_tcp_en;
98         req->ipv6_udp_en = rss_config->rss_tuple_sets.ipv6_udp_en;
99         req->ipv6_sctp_en = rss_config->rss_tuple_sets.ipv6_sctp_en;
100         req->ipv6_fragment_en = rss_config->rss_tuple_sets.ipv6_fragment_en;
101
102         ret = hns3_cmd_send(hw, &desc_tuple, 1);
103         if (ret)
104                 hns3_err(hw, "Configure RSS input tuple mode failed %d", ret);
105
106         return ret;
107 }
108
109 /*
110  * rss_indirection_table command function, opcode:0x0D07.
111  * Used to configure the indirection table of rss.
112  */
113 int
114 hns3_set_rss_indir_table(struct hns3_hw *hw, uint8_t *indir, uint16_t size)
115 {
116         struct hns3_rss_indirection_table_cmd *req;
117         struct hns3_cmd_desc desc;
118         int ret, i, j, num;
119
120         req = (struct hns3_rss_indirection_table_cmd *)desc.data;
121
122         for (i = 0; i < size / HNS3_RSS_CFG_TBL_SIZE; i++) {
123                 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_RSS_INDIR_TABLE,
124                                           false);
125                 req->start_table_index =
126                                 rte_cpu_to_le_16(i * HNS3_RSS_CFG_TBL_SIZE);
127                 req->rss_set_bitmap = rte_cpu_to_le_16(HNS3_RSS_SET_BITMAP_MSK);
128                 for (j = 0; j < HNS3_RSS_CFG_TBL_SIZE; j++) {
129                         num = i * HNS3_RSS_CFG_TBL_SIZE + j;
130                         req->rss_result[j] = indir[num];
131                 }
132                 ret = hns3_cmd_send(hw, &desc, 1);
133                 if (ret) {
134                         hns3_err(hw,
135                                  "Sets RSS indirection table failed %d size %u",
136                                  ret, size);
137                         return ret;
138                 }
139         }
140
141         /* Update redirection table of hw */
142         memcpy(hw->rss_info.rss_indirection_tbl, indir, HNS3_RSS_IND_TBL_SIZE);
143
144         return 0;
145 }
146
147 int
148 hns3_rss_reset_indir_table(struct hns3_hw *hw)
149 {
150         uint8_t *lut;
151         int ret;
152
153         lut = rte_zmalloc("hns3_rss_lut", HNS3_RSS_IND_TBL_SIZE, 0);
154         if (lut == NULL) {
155                 hns3_err(hw, "No hns3_rss_lut memory can be allocated");
156                 return -ENOMEM;
157         }
158
159         ret = hns3_set_rss_indir_table(hw, lut, HNS3_RSS_IND_TBL_SIZE);
160         if (ret)
161                 hns3_err(hw, "RSS uninit indir table failed: %d", ret);
162         rte_free(lut);
163
164         return ret;
165 }
166
167 int
168 hns3_set_rss_tuple_by_rss_hf(struct hns3_hw *hw,
169                              struct hns3_rss_tuple_cfg *tuple, uint64_t rss_hf)
170 {
171         struct hns3_rss_input_tuple_cmd *req;
172         struct hns3_cmd_desc desc;
173         uint32_t i;
174         int ret;
175
176         hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_RSS_INPUT_TUPLE, false);
177
178         req = (struct hns3_rss_input_tuple_cmd *)desc.data;
179
180         /* Enable ipv4 or ipv6 tuple by flow type */
181         for (i = 0; i < RTE_ETH_FLOW_MAX; i++) {
182                 switch (rss_hf & (1ULL << i)) {
183                 case ETH_RSS_NONFRAG_IPV4_TCP:
184                         req->ipv4_tcp_en = HNS3_RSS_INPUT_TUPLE_OTHER;
185                         break;
186                 case ETH_RSS_NONFRAG_IPV4_UDP:
187                         req->ipv4_udp_en = HNS3_RSS_INPUT_TUPLE_OTHER;
188                         break;
189                 case ETH_RSS_NONFRAG_IPV4_SCTP:
190                         req->ipv4_sctp_en = HNS3_RSS_INPUT_TUPLE_SCTP;
191                         break;
192                 case ETH_RSS_FRAG_IPV4:
193                         req->ipv4_fragment_en |= HNS3_IP_FRAG_BIT_MASK;
194                         break;
195                 case ETH_RSS_NONFRAG_IPV4_OTHER:
196                         req->ipv4_fragment_en |= HNS3_IP_OTHER_BIT_MASK;
197                         break;
198                 case ETH_RSS_NONFRAG_IPV6_TCP:
199                         req->ipv6_tcp_en = HNS3_RSS_INPUT_TUPLE_OTHER;
200                         break;
201                 case ETH_RSS_NONFRAG_IPV6_UDP:
202                         req->ipv6_udp_en = HNS3_RSS_INPUT_TUPLE_OTHER;
203                         break;
204                 case ETH_RSS_NONFRAG_IPV6_SCTP:
205                         req->ipv6_sctp_en = HNS3_RSS_INPUT_TUPLE_SCTP;
206                         break;
207                 case ETH_RSS_FRAG_IPV6:
208                         req->ipv6_fragment_en |= HNS3_IP_FRAG_BIT_MASK;
209                         break;
210                 case ETH_RSS_NONFRAG_IPV6_OTHER:
211                         req->ipv6_fragment_en |= HNS3_IP_OTHER_BIT_MASK;
212                         break;
213                 default:
214                         /*
215                          * rss_hf doesn't include unsupported flow types
216                          * because the API framework has checked it, and
217                          * this branch will never go unless rss_hf is zero.
218                          */
219                         break;
220                 }
221         }
222
223         ret = hns3_cmd_send(hw, &desc, 1);
224         if (ret) {
225                 hns3_err(hw, "Update RSS flow types tuples failed %d", ret);
226                 return ret;
227         }
228
229         tuple->ipv4_tcp_en = req->ipv4_tcp_en;
230         tuple->ipv4_udp_en = req->ipv4_udp_en;
231         tuple->ipv4_sctp_en = req->ipv4_sctp_en;
232         tuple->ipv4_fragment_en = req->ipv4_fragment_en;
233         tuple->ipv6_tcp_en = req->ipv6_tcp_en;
234         tuple->ipv6_udp_en = req->ipv6_udp_en;
235         tuple->ipv6_sctp_en = req->ipv6_sctp_en;
236         tuple->ipv6_fragment_en = req->ipv6_fragment_en;
237
238         return 0;
239 }
240
241 /*
242  * Configure RSS hash protocols and hash key.
243  * @param dev
244  *   Pointer to Ethernet device.
245  * @praram rss_conf
246  *   The configuration select of  rss key size and tuple flow_types.
247  * @return
248  *   0 on success, a negative errno value otherwise is set.
249  */
250 int
251 hns3_dev_rss_hash_update(struct rte_eth_dev *dev,
252                          struct rte_eth_rss_conf *rss_conf)
253 {
254         struct hns3_adapter *hns = dev->data->dev_private;
255         struct hns3_hw *hw = &hns->hw;
256         struct hns3_rss_tuple_cfg *tuple = &hw->rss_info.rss_tuple_sets;
257         struct hns3_rss_conf *rss_cfg = &hw->rss_info;
258         uint8_t key_len = rss_conf->rss_key_len;
259         uint8_t algo;
260         uint64_t rss_hf = rss_conf->rss_hf;
261         uint8_t *key = rss_conf->rss_key;
262         int ret;
263
264         if (hw->rss_dis_flag)
265                 return -EINVAL;
266
267         rte_spinlock_lock(&hw->lock);
268         ret = hns3_set_rss_tuple_by_rss_hf(hw, tuple, rss_hf);
269         if (ret)
270                 goto conf_err;
271
272         if (rss_cfg->conf.types && rss_hf == 0) {
273                 /* Disable RSS, reset indirection table by local variable */
274                 ret = hns3_rss_reset_indir_table(hw);
275                 if (ret)
276                         goto conf_err;
277         } else if (rss_hf && rss_cfg->conf.types == 0) {
278                 /* Enable RSS, restore indirection table by hw's config */
279                 ret = hns3_set_rss_indir_table(hw, rss_cfg->rss_indirection_tbl,
280                                                HNS3_RSS_IND_TBL_SIZE);
281                 if (ret)
282                         goto conf_err;
283         }
284
285         /* Update supported flow types when set tuple success */
286         rss_cfg->conf.types = rss_hf;
287
288         if (key) {
289                 if (key_len != HNS3_RSS_KEY_SIZE) {
290                         hns3_err(hw, "The hash key len(%u) is invalid",
291                                  key_len);
292                         ret = -EINVAL;
293                         goto conf_err;
294                 }
295                 algo = rss_cfg->conf.func == RTE_ETH_HASH_FUNCTION_SIMPLE_XOR ?
296                         HNS3_RSS_HASH_ALGO_SIMPLE : HNS3_RSS_HASH_ALGO_TOEPLITZ;
297                 ret = hns3_set_rss_algo_key(hw, algo, key);
298                 if (ret)
299                         goto conf_err;
300         }
301         rte_spinlock_unlock(&hw->lock);
302
303         return 0;
304
305 conf_err:
306         rte_spinlock_unlock(&hw->lock);
307         return ret;
308 }
309
310 /*
311  * Get rss key and rss_hf types set of RSS hash configuration.
312  * @param dev
313  *   Pointer to Ethernet device.
314  * @praram rss_conf
315  *   The buffer to get rss key size and tuple types.
316  * @return
317  *   0 on success.
318  */
319 int
320 hns3_dev_rss_hash_conf_get(struct rte_eth_dev *dev,
321                            struct rte_eth_rss_conf *rss_conf)
322 {
323         struct hns3_adapter *hns = dev->data->dev_private;
324         struct hns3_hw *hw = &hns->hw;
325         struct hns3_rss_conf *rss_cfg = &hw->rss_info;
326
327         rte_spinlock_lock(&hw->lock);
328         rss_conf->rss_hf = rss_cfg->conf.types;
329
330         /* Get the RSS Key required by the user */
331         if (rss_conf->rss_key)
332                 memcpy(rss_conf->rss_key, rss_cfg->key, HNS3_RSS_KEY_SIZE);
333         rte_spinlock_unlock(&hw->lock);
334
335         return 0;
336 }
337
338 /*
339  * Update rss redirection table of RSS.
340  * @param dev
341  *   Pointer to Ethernet device.
342  * @praram reta_conf
343  *   Pointer to the configuration select of mask and redirection tables.
344  * @param reta_size
345  *   Redirection table size.
346  * @return
347  *   0 on success, a negative errno value otherwise is set.
348  */
349 int
350 hns3_dev_rss_reta_update(struct rte_eth_dev *dev,
351                          struct rte_eth_rss_reta_entry64 *reta_conf,
352                          uint16_t reta_size)
353 {
354         struct hns3_adapter *hns = dev->data->dev_private;
355         struct hns3_hw *hw = &hns->hw;
356         struct hns3_rss_conf *rss_cfg = &hw->rss_info;
357         uint16_t i, indir_size = HNS3_RSS_IND_TBL_SIZE; /* Table size is 512 */
358         uint8_t indirection_tbl[HNS3_RSS_IND_TBL_SIZE];
359         uint16_t idx, shift, allow_rss_queues;
360         int ret;
361
362         if (reta_size != indir_size || reta_size > ETH_RSS_RETA_SIZE_512) {
363                 hns3_err(hw, "The size of hash lookup table configured (%u)"
364                          "doesn't match the number hardware can supported"
365                          "(%u)", reta_size, indir_size);
366                 return -EINVAL;
367         }
368         rte_spinlock_lock(&hw->lock);
369         memcpy(indirection_tbl, rss_cfg->rss_indirection_tbl,
370                 HNS3_RSS_IND_TBL_SIZE);
371         allow_rss_queues = RTE_MIN(dev->data->nb_rx_queues, hw->rss_size_max);
372         for (i = 0; i < reta_size; i++) {
373                 idx = i / RTE_RETA_GROUP_SIZE;
374                 shift = i % RTE_RETA_GROUP_SIZE;
375                 if (reta_conf[idx].reta[shift] >= allow_rss_queues) {
376                         rte_spinlock_unlock(&hw->lock);
377                         hns3_err(hw, "Invalid queue id(%u) to be set in "
378                                  "redirection table, max number of rss "
379                                  "queues: %u", reta_conf[idx].reta[shift],
380                                  allow_rss_queues);
381                         return -EINVAL;
382                 }
383
384                 if (reta_conf[idx].mask & (1ULL << shift))
385                         indirection_tbl[i] = reta_conf[idx].reta[shift];
386         }
387
388         ret = hns3_set_rss_indir_table(hw, indirection_tbl,
389                                        HNS3_RSS_IND_TBL_SIZE);
390
391         rte_spinlock_unlock(&hw->lock);
392         return ret;
393 }
394
395 /*
396  * Get rss redirection table of RSS hash configuration.
397  * @param dev
398  *   Pointer to Ethernet device.
399  * @praram reta_conf
400  *   Pointer to the configuration select of mask and redirection tables.
401  * @param reta_size
402  *   Redirection table size.
403  * @return
404  *   0 on success, a negative errno value otherwise is set.
405  */
406 int
407 hns3_dev_rss_reta_query(struct rte_eth_dev *dev,
408                         struct rte_eth_rss_reta_entry64 *reta_conf,
409                         uint16_t reta_size)
410 {
411         struct hns3_adapter *hns = dev->data->dev_private;
412         struct hns3_hw *hw = &hns->hw;
413         struct hns3_rss_conf *rss_cfg = &hw->rss_info;
414         uint16_t i, indir_size = HNS3_RSS_IND_TBL_SIZE; /* Table size is 512 */
415         uint16_t idx, shift;
416
417         if (reta_size != indir_size || reta_size > ETH_RSS_RETA_SIZE_512) {
418                 hns3_err(hw, "The size of hash lookup table configured (%u)"
419                          " doesn't match the number hardware can supported"
420                          "(%u)", reta_size, indir_size);
421                 return -EINVAL;
422         }
423         rte_spinlock_lock(&hw->lock);
424         for (i = 0; i < reta_size; i++) {
425                 idx = i / RTE_RETA_GROUP_SIZE;
426                 shift = i % RTE_RETA_GROUP_SIZE;
427                 if (reta_conf[idx].mask & (1ULL << shift))
428                         reta_conf[idx].reta[shift] =
429                                                 rss_cfg->rss_indirection_tbl[i];
430         }
431         rte_spinlock_unlock(&hw->lock);
432         return 0;
433 }
434
435 /*
436  * Used to configure the tc_size and tc_offset.
437  */
438 static int
439 hns3_set_rss_tc_mode(struct hns3_hw *hw)
440 {
441         uint16_t rss_size = hw->alloc_rss_size;
442         struct hns3_rss_tc_mode_cmd *req;
443         uint16_t tc_offset[HNS3_MAX_TC_NUM];
444         uint8_t tc_valid[HNS3_MAX_TC_NUM];
445         uint16_t tc_size[HNS3_MAX_TC_NUM];
446         struct hns3_cmd_desc desc;
447         uint16_t roundup_size;
448         uint16_t i;
449         int ret;
450
451         req = (struct hns3_rss_tc_mode_cmd *)desc.data;
452
453         roundup_size = roundup_pow_of_two(rss_size);
454         roundup_size = ilog2(roundup_size);
455
456         for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
457                 tc_valid[i] = !!(hw->hw_tc_map & BIT(i));
458                 tc_size[i] = roundup_size;
459                 tc_offset[i] = rss_size * i;
460         }
461
462         hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_RSS_TC_MODE, false);
463         for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
464                 uint16_t mode = 0;
465
466                 hns3_set_bit(mode, HNS3_RSS_TC_VALID_B, (tc_valid[i] & 0x1));
467                 hns3_set_field(mode, HNS3_RSS_TC_SIZE_M, HNS3_RSS_TC_SIZE_S,
468                                tc_size[i]);
469                 hns3_set_field(mode, HNS3_RSS_TC_OFFSET_M, HNS3_RSS_TC_OFFSET_S,
470                                tc_offset[i]);
471
472                 req->rss_tc_mode[i] = rte_cpu_to_le_16(mode);
473         }
474         ret = hns3_cmd_send(hw, &desc, 1);
475         if (ret)
476                 hns3_err(hw, "Sets rss tc mode failed %d", ret);
477
478         return ret;
479 }
480
481 static void
482 hns3_rss_tuple_uninit(struct hns3_hw *hw)
483 {
484         struct hns3_rss_input_tuple_cmd *req;
485         struct hns3_cmd_desc desc;
486         int ret;
487
488         hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_RSS_INPUT_TUPLE, false);
489
490         req = (struct hns3_rss_input_tuple_cmd *)desc.data;
491
492         memset(req, 0, sizeof(struct hns3_rss_tuple_cfg));
493
494         ret = hns3_cmd_send(hw, &desc, 1);
495         if (ret) {
496                 hns3_err(hw, "RSS uninit tuple failed %d", ret);
497                 return;
498         }
499 }
500
501 /*
502  * Set the default rss configuration in the init of driver.
503  */
504 void
505 hns3_set_default_rss_args(struct hns3_hw *hw)
506 {
507         struct hns3_rss_conf *rss_cfg = &hw->rss_info;
508         uint16_t queue_num = hw->alloc_rss_size;
509         int i;
510
511         /* Default hash algorithm */
512         rss_cfg->conf.func = RTE_ETH_HASH_FUNCTION_TOEPLITZ;
513
514         /* Default RSS key */
515         memcpy(rss_cfg->key, hns3_hash_key, HNS3_RSS_KEY_SIZE);
516
517         /* Initialize RSS indirection table */
518         for (i = 0; i < HNS3_RSS_IND_TBL_SIZE; i++)
519                 rss_cfg->rss_indirection_tbl[i] = i % queue_num;
520 }
521
522 /*
523  * RSS initialization for hns3 pmd driver.
524  */
525 int
526 hns3_config_rss(struct hns3_adapter *hns)
527 {
528         struct hns3_hw *hw = &hns->hw;
529         struct hns3_rss_conf *rss_cfg = &hw->rss_info;
530         uint8_t hash_algo =
531                 (hw->rss_info.conf.func == RTE_ETH_HASH_FUNCTION_TOEPLITZ ?
532                  HNS3_RSS_HASH_ALGO_TOEPLITZ : HNS3_RSS_HASH_ALGO_SIMPLE);
533         uint8_t *hash_key = rss_cfg->key;
534         int ret, ret1;
535
536         enum rte_eth_rx_mq_mode mq_mode = hw->data->dev_conf.rxmode.mq_mode;
537
538         /* When RSS is off, redirect the packet queue 0 */
539         if (((uint32_t)mq_mode & ETH_MQ_RX_RSS_FLAG) == 0)
540                 hns3_rss_uninit(hns);
541
542         /* Configure RSS hash algorithm and hash key offset */
543         ret = hns3_set_rss_algo_key(hw, hash_algo, hash_key);
544         if (ret)
545                 return ret;
546
547         /* Configure the tuple selection for RSS hash input */
548         ret = hns3_set_rss_input_tuple(hw);
549         if (ret)
550                 return ret;
551
552         /*
553          * When RSS is off, it doesn't need to configure rss redirection table
554          * to hardware.
555          */
556         if (((uint32_t)mq_mode & ETH_MQ_RX_RSS_FLAG)) {
557                 ret = hns3_set_rss_indir_table(hw, rss_cfg->rss_indirection_tbl,
558                                                HNS3_RSS_IND_TBL_SIZE);
559                 if (ret)
560                         goto rss_tuple_uninit;
561         }
562
563         ret = hns3_set_rss_tc_mode(hw);
564         if (ret)
565                 goto rss_indir_table_uninit;
566
567         return ret;
568
569 rss_indir_table_uninit:
570         if (((uint32_t)mq_mode & ETH_MQ_RX_RSS_FLAG)) {
571                 ret1 = hns3_rss_reset_indir_table(hw);
572                 if (ret1 != 0)
573                         return ret;
574         }
575
576 rss_tuple_uninit:
577         hns3_rss_tuple_uninit(hw);
578
579         /* Disable RSS */
580         hw->rss_info.conf.types = 0;
581
582         return ret;
583 }
584
585 /*
586  * RSS uninitialization for hns3 pmd driver.
587  */
588 void
589 hns3_rss_uninit(struct hns3_adapter *hns)
590 {
591         struct hns3_hw *hw = &hns->hw;
592         int ret;
593
594         hns3_rss_tuple_uninit(hw);
595         ret = hns3_rss_reset_indir_table(hw);
596         if (ret != 0)
597                 return;
598
599         /* Disable RSS */
600         hw->rss_info.conf.types = 0;
601 }