]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - drivers/net/ethernet/mellanox/mlx4/en_rx.c
net/mlx4_en: fix a memory leak bug
[mirror_ubuntu-bionic-kernel.git] / drivers / net / ethernet / mellanox / mlx4 / en_rx.c
1 /*
2 * Copyright (c) 2007 Mellanox Technologies. All rights reserved.
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 *
32 */
33
34 #include <net/busy_poll.h>
35 #include <linux/bpf.h>
36 #include <linux/bpf_trace.h>
37 #include <linux/mlx4/cq.h>
38 #include <linux/slab.h>
39 #include <linux/mlx4/qp.h>
40 #include <linux/skbuff.h>
41 #include <linux/rculist.h>
42 #include <linux/if_ether.h>
43 #include <linux/if_vlan.h>
44 #include <linux/vmalloc.h>
45 #include <linux/irq.h>
46
47 #if IS_ENABLED(CONFIG_IPV6)
48 #include <net/ip6_checksum.h>
49 #endif
50
51 #include "mlx4_en.h"
52
53 static int mlx4_alloc_page(struct mlx4_en_priv *priv,
54 struct mlx4_en_rx_alloc *frag,
55 gfp_t gfp)
56 {
57 struct page *page;
58 dma_addr_t dma;
59
60 page = alloc_page(gfp);
61 if (unlikely(!page))
62 return -ENOMEM;
63 dma = dma_map_page(priv->ddev, page, 0, PAGE_SIZE, priv->dma_dir);
64 if (unlikely(dma_mapping_error(priv->ddev, dma))) {
65 __free_page(page);
66 return -ENOMEM;
67 }
68 frag->page = page;
69 frag->dma = dma;
70 frag->page_offset = priv->rx_headroom;
71 return 0;
72 }
73
74 static int mlx4_en_alloc_frags(struct mlx4_en_priv *priv,
75 struct mlx4_en_rx_ring *ring,
76 struct mlx4_en_rx_desc *rx_desc,
77 struct mlx4_en_rx_alloc *frags,
78 gfp_t gfp)
79 {
80 int i;
81
82 for (i = 0; i < priv->num_frags; i++, frags++) {
83 if (!frags->page) {
84 if (mlx4_alloc_page(priv, frags, gfp))
85 return -ENOMEM;
86 ring->rx_alloc_pages++;
87 }
88 rx_desc->data[i].addr = cpu_to_be64(frags->dma +
89 frags->page_offset);
90 }
91 return 0;
92 }
93
94 static void mlx4_en_free_frag(const struct mlx4_en_priv *priv,
95 struct mlx4_en_rx_alloc *frag)
96 {
97 if (frag->page) {
98 dma_unmap_page(priv->ddev, frag->dma,
99 PAGE_SIZE, priv->dma_dir);
100 __free_page(frag->page);
101 }
102 /* We need to clear all fields, otherwise a change of priv->log_rx_info
103 * could lead to see garbage later in frag->page.
104 */
105 memset(frag, 0, sizeof(*frag));
106 }
107
108 static void mlx4_en_init_rx_desc(const struct mlx4_en_priv *priv,
109 struct mlx4_en_rx_ring *ring, int index)
110 {
111 struct mlx4_en_rx_desc *rx_desc = ring->buf + ring->stride * index;
112 int possible_frags;
113 int i;
114
115 /* Set size and memtype fields */
116 for (i = 0; i < priv->num_frags; i++) {
117 rx_desc->data[i].byte_count =
118 cpu_to_be32(priv->frag_info[i].frag_size);
119 rx_desc->data[i].lkey = cpu_to_be32(priv->mdev->mr.key);
120 }
121
122 /* If the number of used fragments does not fill up the ring stride,
123 * remaining (unused) fragments must be padded with null address/size
124 * and a special memory key */
125 possible_frags = (ring->stride - sizeof(struct mlx4_en_rx_desc)) / DS_SIZE;
126 for (i = priv->num_frags; i < possible_frags; i++) {
127 rx_desc->data[i].byte_count = 0;
128 rx_desc->data[i].lkey = cpu_to_be32(MLX4_EN_MEMTYPE_PAD);
129 rx_desc->data[i].addr = 0;
130 }
131 }
132
133 static int mlx4_en_prepare_rx_desc(struct mlx4_en_priv *priv,
134 struct mlx4_en_rx_ring *ring, int index,
135 gfp_t gfp)
136 {
137 struct mlx4_en_rx_desc *rx_desc = ring->buf +
138 (index << ring->log_stride);
139 struct mlx4_en_rx_alloc *frags = ring->rx_info +
140 (index << priv->log_rx_info);
141 if (likely(ring->page_cache.index > 0)) {
142 /* XDP uses a single page per frame */
143 if (!frags->page) {
144 ring->page_cache.index--;
145 frags->page = ring->page_cache.buf[ring->page_cache.index].page;
146 frags->dma = ring->page_cache.buf[ring->page_cache.index].dma;
147 }
148 frags->page_offset = XDP_PACKET_HEADROOM;
149 rx_desc->data[0].addr = cpu_to_be64(frags->dma +
150 XDP_PACKET_HEADROOM);
151 return 0;
152 }
153
154 return mlx4_en_alloc_frags(priv, ring, rx_desc, frags, gfp);
155 }
156
157 static bool mlx4_en_is_ring_empty(const struct mlx4_en_rx_ring *ring)
158 {
159 return ring->prod == ring->cons;
160 }
161
162 static inline void mlx4_en_update_rx_prod_db(struct mlx4_en_rx_ring *ring)
163 {
164 *ring->wqres.db.db = cpu_to_be32(ring->prod & 0xffff);
165 }
166
167 /* slow path */
168 static void mlx4_en_free_rx_desc(const struct mlx4_en_priv *priv,
169 struct mlx4_en_rx_ring *ring,
170 int index)
171 {
172 struct mlx4_en_rx_alloc *frags;
173 int nr;
174
175 frags = ring->rx_info + (index << priv->log_rx_info);
176 for (nr = 0; nr < priv->num_frags; nr++) {
177 en_dbg(DRV, priv, "Freeing fragment:%d\n", nr);
178 mlx4_en_free_frag(priv, frags + nr);
179 }
180 }
181
182 /* Function not in fast-path */
183 static int mlx4_en_fill_rx_buffers(struct mlx4_en_priv *priv)
184 {
185 struct mlx4_en_rx_ring *ring;
186 int ring_ind;
187 int buf_ind;
188 int new_size;
189
190 for (buf_ind = 0; buf_ind < priv->prof->rx_ring_size; buf_ind++) {
191 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
192 ring = priv->rx_ring[ring_ind];
193
194 if (mlx4_en_prepare_rx_desc(priv, ring,
195 ring->actual_size,
196 GFP_KERNEL)) {
197 if (ring->actual_size < MLX4_EN_MIN_RX_SIZE) {
198 en_err(priv, "Failed to allocate enough rx buffers\n");
199 return -ENOMEM;
200 } else {
201 new_size = rounddown_pow_of_two(ring->actual_size);
202 en_warn(priv, "Only %d buffers allocated reducing ring size to %d\n",
203 ring->actual_size, new_size);
204 goto reduce_rings;
205 }
206 }
207 ring->actual_size++;
208 ring->prod++;
209 }
210 }
211 return 0;
212
213 reduce_rings:
214 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
215 ring = priv->rx_ring[ring_ind];
216 while (ring->actual_size > new_size) {
217 ring->actual_size--;
218 ring->prod--;
219 mlx4_en_free_rx_desc(priv, ring, ring->actual_size);
220 }
221 }
222
223 return 0;
224 }
225
226 static void mlx4_en_free_rx_buf(struct mlx4_en_priv *priv,
227 struct mlx4_en_rx_ring *ring)
228 {
229 int index;
230
231 en_dbg(DRV, priv, "Freeing Rx buf - cons:%d prod:%d\n",
232 ring->cons, ring->prod);
233
234 /* Unmap and free Rx buffers */
235 for (index = 0; index < ring->size; index++) {
236 en_dbg(DRV, priv, "Processing descriptor:%d\n", index);
237 mlx4_en_free_rx_desc(priv, ring, index);
238 }
239 ring->cons = 0;
240 ring->prod = 0;
241 }
242
243 void mlx4_en_set_num_rx_rings(struct mlx4_en_dev *mdev)
244 {
245 int i;
246 int num_of_eqs;
247 int num_rx_rings;
248 struct mlx4_dev *dev = mdev->dev;
249
250 mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_ETH) {
251 num_of_eqs = max_t(int, MIN_RX_RINGS,
252 min_t(int,
253 mlx4_get_eqs_per_port(mdev->dev, i),
254 DEF_RX_RINGS));
255
256 num_rx_rings = mlx4_low_memory_profile() ? MIN_RX_RINGS :
257 min_t(int, num_of_eqs, num_online_cpus());
258 mdev->profile.prof[i].rx_ring_num =
259 rounddown_pow_of_two(num_rx_rings);
260 }
261 }
262
263 int mlx4_en_create_rx_ring(struct mlx4_en_priv *priv,
264 struct mlx4_en_rx_ring **pring,
265 u32 size, u16 stride, int node)
266 {
267 struct mlx4_en_dev *mdev = priv->mdev;
268 struct mlx4_en_rx_ring *ring;
269 int err = -ENOMEM;
270 int tmp;
271
272 ring = kzalloc_node(sizeof(*ring), GFP_KERNEL, node);
273 if (!ring) {
274 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
275 if (!ring) {
276 en_err(priv, "Failed to allocate RX ring structure\n");
277 return -ENOMEM;
278 }
279 }
280
281 ring->prod = 0;
282 ring->cons = 0;
283 ring->size = size;
284 ring->size_mask = size - 1;
285 ring->stride = stride;
286 ring->log_stride = ffs(ring->stride) - 1;
287 ring->buf_size = ring->size * ring->stride + TXBB_SIZE;
288
289 tmp = size * roundup_pow_of_two(MLX4_EN_MAX_RX_FRAGS *
290 sizeof(struct mlx4_en_rx_alloc));
291 ring->rx_info = vzalloc_node(tmp, node);
292 if (!ring->rx_info) {
293 ring->rx_info = vzalloc(tmp);
294 if (!ring->rx_info) {
295 err = -ENOMEM;
296 goto err_ring;
297 }
298 }
299
300 en_dbg(DRV, priv, "Allocated rx_info ring at addr:%p size:%d\n",
301 ring->rx_info, tmp);
302
303 /* Allocate HW buffers on provided NUMA node */
304 set_dev_node(&mdev->dev->persist->pdev->dev, node);
305 err = mlx4_alloc_hwq_res(mdev->dev, &ring->wqres, ring->buf_size);
306 set_dev_node(&mdev->dev->persist->pdev->dev, mdev->dev->numa_node);
307 if (err)
308 goto err_info;
309
310 ring->buf = ring->wqres.buf.direct.buf;
311
312 ring->hwtstamp_rx_filter = priv->hwtstamp_config.rx_filter;
313
314 *pring = ring;
315 return 0;
316
317 err_info:
318 vfree(ring->rx_info);
319 ring->rx_info = NULL;
320 err_ring:
321 kfree(ring);
322 *pring = NULL;
323
324 return err;
325 }
326
327 int mlx4_en_activate_rx_rings(struct mlx4_en_priv *priv)
328 {
329 struct mlx4_en_rx_ring *ring;
330 int i;
331 int ring_ind;
332 int err;
333 int stride = roundup_pow_of_two(sizeof(struct mlx4_en_rx_desc) +
334 DS_SIZE * priv->num_frags);
335
336 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
337 ring = priv->rx_ring[ring_ind];
338
339 ring->prod = 0;
340 ring->cons = 0;
341 ring->actual_size = 0;
342 ring->cqn = priv->rx_cq[ring_ind]->mcq.cqn;
343
344 ring->stride = stride;
345 if (ring->stride <= TXBB_SIZE) {
346 /* Stamp first unused send wqe */
347 __be32 *ptr = (__be32 *)ring->buf;
348 __be32 stamp = cpu_to_be32(1 << STAMP_SHIFT);
349 *ptr = stamp;
350 /* Move pointer to start of rx section */
351 ring->buf += TXBB_SIZE;
352 }
353
354 ring->log_stride = ffs(ring->stride) - 1;
355 ring->buf_size = ring->size * ring->stride;
356
357 memset(ring->buf, 0, ring->buf_size);
358 mlx4_en_update_rx_prod_db(ring);
359
360 /* Initialize all descriptors */
361 for (i = 0; i < ring->size; i++)
362 mlx4_en_init_rx_desc(priv, ring, i);
363 }
364 err = mlx4_en_fill_rx_buffers(priv);
365 if (err)
366 goto err_buffers;
367
368 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
369 ring = priv->rx_ring[ring_ind];
370
371 ring->size_mask = ring->actual_size - 1;
372 mlx4_en_update_rx_prod_db(ring);
373 }
374
375 return 0;
376
377 err_buffers:
378 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++)
379 mlx4_en_free_rx_buf(priv, priv->rx_ring[ring_ind]);
380
381 ring_ind = priv->rx_ring_num - 1;
382 while (ring_ind >= 0) {
383 if (priv->rx_ring[ring_ind]->stride <= TXBB_SIZE)
384 priv->rx_ring[ring_ind]->buf -= TXBB_SIZE;
385 ring_ind--;
386 }
387 return err;
388 }
389
390 /* We recover from out of memory by scheduling our napi poll
391 * function (mlx4_en_process_cq), which tries to allocate
392 * all missing RX buffers (call to mlx4_en_refill_rx_buffers).
393 */
394 void mlx4_en_recover_from_oom(struct mlx4_en_priv *priv)
395 {
396 int ring;
397
398 if (!priv->port_up)
399 return;
400
401 for (ring = 0; ring < priv->rx_ring_num; ring++) {
402 if (mlx4_en_is_ring_empty(priv->rx_ring[ring])) {
403 local_bh_disable();
404 napi_reschedule(&priv->rx_cq[ring]->napi);
405 local_bh_enable();
406 }
407 }
408 }
409
410 /* When the rx ring is running in page-per-packet mode, a released frame can go
411 * directly into a small cache, to avoid unmapping or touching the page
412 * allocator. In bpf prog performance scenarios, buffers are either forwarded
413 * or dropped, never converted to skbs, so every page can come directly from
414 * this cache when it is sized to be a multiple of the napi budget.
415 */
416 bool mlx4_en_rx_recycle(struct mlx4_en_rx_ring *ring,
417 struct mlx4_en_rx_alloc *frame)
418 {
419 struct mlx4_en_page_cache *cache = &ring->page_cache;
420
421 if (cache->index >= MLX4_EN_CACHE_SIZE)
422 return false;
423
424 cache->buf[cache->index].page = frame->page;
425 cache->buf[cache->index].dma = frame->dma;
426 cache->index++;
427 return true;
428 }
429
430 void mlx4_en_destroy_rx_ring(struct mlx4_en_priv *priv,
431 struct mlx4_en_rx_ring **pring,
432 u32 size, u16 stride)
433 {
434 struct mlx4_en_dev *mdev = priv->mdev;
435 struct mlx4_en_rx_ring *ring = *pring;
436 struct bpf_prog *old_prog;
437
438 old_prog = rcu_dereference_protected(
439 ring->xdp_prog,
440 lockdep_is_held(&mdev->state_lock));
441 if (old_prog)
442 bpf_prog_put(old_prog);
443 mlx4_free_hwq_res(mdev->dev, &ring->wqres, size * stride + TXBB_SIZE);
444 vfree(ring->rx_info);
445 ring->rx_info = NULL;
446 kfree(ring);
447 *pring = NULL;
448 }
449
450 void mlx4_en_deactivate_rx_ring(struct mlx4_en_priv *priv,
451 struct mlx4_en_rx_ring *ring)
452 {
453 int i;
454
455 for (i = 0; i < ring->page_cache.index; i++) {
456 dma_unmap_page(priv->ddev, ring->page_cache.buf[i].dma,
457 PAGE_SIZE, priv->dma_dir);
458 put_page(ring->page_cache.buf[i].page);
459 }
460 ring->page_cache.index = 0;
461 mlx4_en_free_rx_buf(priv, ring);
462 if (ring->stride <= TXBB_SIZE)
463 ring->buf -= TXBB_SIZE;
464 }
465
466
467 static int mlx4_en_complete_rx_desc(struct mlx4_en_priv *priv,
468 struct mlx4_en_rx_alloc *frags,
469 struct sk_buff *skb,
470 int length)
471 {
472 const struct mlx4_en_frag_info *frag_info = priv->frag_info;
473 unsigned int truesize = 0;
474 bool release = true;
475 int nr, frag_size;
476 struct page *page;
477 dma_addr_t dma;
478
479 /* Collect used fragments while replacing them in the HW descriptors */
480 for (nr = 0;; frags++) {
481 frag_size = min_t(int, length, frag_info->frag_size);
482
483 page = frags->page;
484 if (unlikely(!page))
485 goto fail;
486
487 dma = frags->dma;
488 dma_sync_single_range_for_cpu(priv->ddev, dma, frags->page_offset,
489 frag_size, priv->dma_dir);
490
491 __skb_fill_page_desc(skb, nr, page, frags->page_offset,
492 frag_size);
493
494 truesize += frag_info->frag_stride;
495 if (frag_info->frag_stride == PAGE_SIZE / 2) {
496 frags->page_offset ^= PAGE_SIZE / 2;
497 release = page_count(page) != 1 ||
498 page_is_pfmemalloc(page) ||
499 page_to_nid(page) != numa_mem_id();
500 } else if (!priv->rx_headroom) {
501 /* rx_headroom for non XDP setup is always 0.
502 * When XDP is set, the above condition will
503 * guarantee page is always released.
504 */
505 u32 sz_align = ALIGN(frag_size, SMP_CACHE_BYTES);
506
507 frags->page_offset += sz_align;
508 release = frags->page_offset + frag_info->frag_size > PAGE_SIZE;
509 }
510 if (release) {
511 dma_unmap_page(priv->ddev, dma, PAGE_SIZE, priv->dma_dir);
512 frags->page = NULL;
513 } else {
514 page_ref_inc(page);
515 }
516
517 nr++;
518 length -= frag_size;
519 if (!length)
520 break;
521 frag_info++;
522 }
523 skb->truesize += truesize;
524 return nr;
525
526 fail:
527 while (nr > 0) {
528 nr--;
529 __skb_frag_unref(skb_shinfo(skb)->frags + nr);
530 }
531 return 0;
532 }
533
534 static void validate_loopback(struct mlx4_en_priv *priv, void *va)
535 {
536 const unsigned char *data = va + ETH_HLEN;
537 int i;
538
539 for (i = 0; i < MLX4_LOOPBACK_TEST_PAYLOAD; i++) {
540 if (data[i] != (unsigned char)i)
541 return;
542 }
543 /* Loopback found */
544 priv->loopback_ok = 1;
545 }
546
547 static void mlx4_en_refill_rx_buffers(struct mlx4_en_priv *priv,
548 struct mlx4_en_rx_ring *ring)
549 {
550 u32 missing = ring->actual_size - (ring->prod - ring->cons);
551
552 /* Try to batch allocations, but not too much. */
553 if (missing < 8)
554 return;
555 do {
556 if (mlx4_en_prepare_rx_desc(priv, ring,
557 ring->prod & ring->size_mask,
558 GFP_ATOMIC | __GFP_MEMALLOC))
559 break;
560 ring->prod++;
561 } while (likely(--missing));
562
563 mlx4_en_update_rx_prod_db(ring);
564 }
565
566 /* When hardware doesn't strip the vlan, we need to calculate the checksum
567 * over it and add it to the hardware's checksum calculation
568 */
569 static inline __wsum get_fixed_vlan_csum(__wsum hw_checksum,
570 struct vlan_hdr *vlanh)
571 {
572 return csum_add(hw_checksum, *(__wsum *)vlanh);
573 }
574
575 /* Although the stack expects checksum which doesn't include the pseudo
576 * header, the HW adds it. To address that, we are subtracting the pseudo
577 * header checksum from the checksum value provided by the HW.
578 */
579 static int get_fixed_ipv4_csum(__wsum hw_checksum, struct sk_buff *skb,
580 struct iphdr *iph)
581 {
582 __u16 length_for_csum = 0;
583 __wsum csum_pseudo_header = 0;
584 __u8 ipproto = iph->protocol;
585
586 if (unlikely(ipproto == IPPROTO_SCTP))
587 return -1;
588
589 length_for_csum = (be16_to_cpu(iph->tot_len) - (iph->ihl << 2));
590 csum_pseudo_header = csum_tcpudp_nofold(iph->saddr, iph->daddr,
591 length_for_csum, ipproto, 0);
592 skb->csum = csum_sub(hw_checksum, csum_pseudo_header);
593 return 0;
594 }
595
596 #if IS_ENABLED(CONFIG_IPV6)
597 /* In IPv6 packets, besides subtracting the pseudo header checksum,
598 * we also compute/add the IP header checksum which
599 * is not added by the HW.
600 */
601 static int get_fixed_ipv6_csum(__wsum hw_checksum, struct sk_buff *skb,
602 struct ipv6hdr *ipv6h)
603 {
604 __u8 nexthdr = ipv6h->nexthdr;
605 __wsum csum_pseudo_hdr = 0;
606
607 if (unlikely(nexthdr == IPPROTO_FRAGMENT ||
608 nexthdr == IPPROTO_HOPOPTS ||
609 nexthdr == IPPROTO_SCTP))
610 return -1;
611 hw_checksum = csum_add(hw_checksum, (__force __wsum)htons(nexthdr));
612
613 csum_pseudo_hdr = csum_partial(&ipv6h->saddr,
614 sizeof(ipv6h->saddr) + sizeof(ipv6h->daddr), 0);
615 csum_pseudo_hdr = csum_add(csum_pseudo_hdr, (__force __wsum)ipv6h->payload_len);
616 csum_pseudo_hdr = csum_add(csum_pseudo_hdr,
617 (__force __wsum)htons(nexthdr));
618
619 skb->csum = csum_sub(hw_checksum, csum_pseudo_hdr);
620 skb->csum = csum_add(skb->csum, csum_partial(ipv6h, sizeof(struct ipv6hdr), 0));
621 return 0;
622 }
623 #endif
624
625 #define short_frame(size) ((size) <= ETH_ZLEN + ETH_FCS_LEN)
626
627 static int check_csum(struct mlx4_cqe *cqe, struct sk_buff *skb, void *va,
628 netdev_features_t dev_features)
629 {
630 __wsum hw_checksum = 0;
631 void *hdr;
632
633 /* CQE csum doesn't cover padding octets in short ethernet
634 * frames. And the pad field is appended prior to calculating
635 * and appending the FCS field.
636 *
637 * Detecting these padded frames requires to verify and parse
638 * IP headers, so we simply force all those small frames to skip
639 * checksum complete.
640 */
641 if (short_frame(skb->len))
642 return -EINVAL;
643
644 hdr = (u8 *)va + sizeof(struct ethhdr);
645 hw_checksum = csum_unfold((__force __sum16)cqe->checksum);
646
647 if (cqe->vlan_my_qpn & cpu_to_be32(MLX4_CQE_CVLAN_PRESENT_MASK) &&
648 !(dev_features & NETIF_F_HW_VLAN_CTAG_RX)) {
649 hw_checksum = get_fixed_vlan_csum(hw_checksum, hdr);
650 hdr += sizeof(struct vlan_hdr);
651 }
652
653 if (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPV4))
654 return get_fixed_ipv4_csum(hw_checksum, skb, hdr);
655 #if IS_ENABLED(CONFIG_IPV6)
656 if (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPV6))
657 return get_fixed_ipv6_csum(hw_checksum, skb, hdr);
658 #endif
659 return 0;
660 }
661
662 int mlx4_en_process_rx_cq(struct net_device *dev, struct mlx4_en_cq *cq, int budget)
663 {
664 struct mlx4_en_priv *priv = netdev_priv(dev);
665 int factor = priv->cqe_factor;
666 struct mlx4_en_rx_ring *ring;
667 struct bpf_prog *xdp_prog;
668 int cq_ring = cq->ring;
669 bool doorbell_pending;
670 struct mlx4_cqe *cqe;
671 int polled = 0;
672 int index;
673
674 if (unlikely(!priv->port_up))
675 return 0;
676
677 if (unlikely(budget <= 0))
678 return polled;
679
680 ring = priv->rx_ring[cq_ring];
681
682 /* Protect accesses to: ring->xdp_prog, priv->mac_hash list */
683 rcu_read_lock();
684 xdp_prog = rcu_dereference(ring->xdp_prog);
685 doorbell_pending = 0;
686
687 /* We assume a 1:1 mapping between CQEs and Rx descriptors, so Rx
688 * descriptor offset can be deduced from the CQE index instead of
689 * reading 'cqe->index' */
690 index = cq->mcq.cons_index & ring->size_mask;
691 cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor;
692
693 /* Process all completed CQEs */
694 while (XNOR(cqe->owner_sr_opcode & MLX4_CQE_OWNER_MASK,
695 cq->mcq.cons_index & cq->size)) {
696 struct mlx4_en_rx_alloc *frags;
697 enum pkt_hash_types hash_type;
698 struct sk_buff *skb;
699 unsigned int length;
700 int ip_summed;
701 void *va;
702 int nr;
703
704 frags = ring->rx_info + (index << priv->log_rx_info);
705 va = page_address(frags[0].page) + frags[0].page_offset;
706 prefetchw(va);
707 /*
708 * make sure we read the CQE after we read the ownership bit
709 */
710 dma_rmb();
711
712 /* Drop packet on bad receive or bad checksum */
713 if (unlikely((cqe->owner_sr_opcode & MLX4_CQE_OPCODE_MASK) ==
714 MLX4_CQE_OPCODE_ERROR)) {
715 en_err(priv, "CQE completed in error - vendor syndrom:%d syndrom:%d\n",
716 ((struct mlx4_err_cqe *)cqe)->vendor_err_syndrome,
717 ((struct mlx4_err_cqe *)cqe)->syndrome);
718 goto next;
719 }
720 if (unlikely(cqe->badfcs_enc & MLX4_CQE_BAD_FCS)) {
721 en_dbg(RX_ERR, priv, "Accepted frame with bad FCS\n");
722 goto next;
723 }
724
725 /* Check if we need to drop the packet if SRIOV is not enabled
726 * and not performing the selftest or flb disabled
727 */
728 if (priv->flags & MLX4_EN_FLAG_RX_FILTER_NEEDED) {
729 const struct ethhdr *ethh = va;
730 dma_addr_t dma;
731 /* Get pointer to first fragment since we haven't
732 * skb yet and cast it to ethhdr struct
733 */
734 dma = frags[0].dma + frags[0].page_offset;
735 dma_sync_single_for_cpu(priv->ddev, dma, sizeof(*ethh),
736 DMA_FROM_DEVICE);
737
738 if (is_multicast_ether_addr(ethh->h_dest)) {
739 struct mlx4_mac_entry *entry;
740 struct hlist_head *bucket;
741 unsigned int mac_hash;
742
743 /* Drop the packet, since HW loopback-ed it */
744 mac_hash = ethh->h_source[MLX4_EN_MAC_HASH_IDX];
745 bucket = &priv->mac_hash[mac_hash];
746 hlist_for_each_entry_rcu(entry, bucket, hlist) {
747 if (ether_addr_equal_64bits(entry->mac,
748 ethh->h_source))
749 goto next;
750 }
751 }
752 }
753
754 if (unlikely(priv->validate_loopback)) {
755 validate_loopback(priv, va);
756 goto next;
757 }
758
759 /*
760 * Packet is OK - process it.
761 */
762 length = be32_to_cpu(cqe->byte_cnt);
763 length -= ring->fcs_del;
764
765 /* A bpf program gets first chance to drop the packet. It may
766 * read bytes but not past the end of the frag.
767 */
768 if (xdp_prog) {
769 struct xdp_buff xdp;
770 dma_addr_t dma;
771 void *orig_data;
772 u32 act;
773
774 dma = frags[0].dma + frags[0].page_offset;
775 dma_sync_single_for_cpu(priv->ddev, dma,
776 priv->frag_info[0].frag_size,
777 DMA_FROM_DEVICE);
778
779 xdp.data_hard_start = va - frags[0].page_offset;
780 xdp.data = va;
781 xdp_set_data_meta_invalid(&xdp);
782 xdp.data_end = xdp.data + length;
783 orig_data = xdp.data;
784
785 act = bpf_prog_run_xdp(xdp_prog, &xdp);
786
787 if (xdp.data != orig_data) {
788 length = xdp.data_end - xdp.data;
789 frags[0].page_offset = xdp.data -
790 xdp.data_hard_start;
791 va = xdp.data;
792 }
793
794 switch (act) {
795 case XDP_PASS:
796 break;
797 case XDP_TX:
798 if (likely(!mlx4_en_xmit_frame(ring, frags, priv,
799 length, cq_ring,
800 &doorbell_pending))) {
801 frags[0].page = NULL;
802 goto next;
803 }
804 trace_xdp_exception(dev, xdp_prog, act);
805 goto xdp_drop_no_cnt; /* Drop on xmit failure */
806 default:
807 bpf_warn_invalid_xdp_action(act);
808 case XDP_ABORTED:
809 trace_xdp_exception(dev, xdp_prog, act);
810 case XDP_DROP:
811 ring->xdp_drop++;
812 xdp_drop_no_cnt:
813 goto next;
814 }
815 }
816
817 ring->bytes += length;
818 ring->packets++;
819
820 skb = napi_get_frags(&cq->napi);
821 if (unlikely(!skb))
822 goto next;
823
824 if (unlikely(ring->hwtstamp_rx_filter == HWTSTAMP_FILTER_ALL)) {
825 u64 timestamp = mlx4_en_get_cqe_ts(cqe);
826
827 mlx4_en_fill_hwtstamps(priv->mdev, skb_hwtstamps(skb),
828 timestamp);
829 }
830 skb_record_rx_queue(skb, cq_ring);
831
832 if (likely(dev->features & NETIF_F_RXCSUM)) {
833 /* TODO: For IP non TCP/UDP packets when csum complete is
834 * not an option (not supported or any other reason) we can
835 * actually check cqe IPOK status bit and report
836 * CHECKSUM_UNNECESSARY rather than CHECKSUM_NONE
837 */
838 if (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_TCP |
839 MLX4_CQE_STATUS_UDP)) {
840 if ((cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPOK)) &&
841 cqe->checksum == cpu_to_be16(0xffff)) {
842 bool l2_tunnel = (dev->hw_enc_features & NETIF_F_RXCSUM) &&
843 (cqe->vlan_my_qpn & cpu_to_be32(MLX4_CQE_L2_TUNNEL));
844
845 ip_summed = CHECKSUM_UNNECESSARY;
846 hash_type = PKT_HASH_TYPE_L4;
847 if (l2_tunnel)
848 skb->csum_level = 1;
849 ring->csum_ok++;
850 } else {
851 goto csum_none;
852 }
853 } else {
854 if (priv->flags & MLX4_EN_FLAG_RX_CSUM_NON_TCP_UDP &&
855 (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPV4 |
856 MLX4_CQE_STATUS_IPV6))) {
857 if (check_csum(cqe, skb, va, dev->features)) {
858 goto csum_none;
859 } else {
860 ip_summed = CHECKSUM_COMPLETE;
861 hash_type = PKT_HASH_TYPE_L3;
862 ring->csum_complete++;
863 }
864 } else {
865 goto csum_none;
866 }
867 }
868 } else {
869 csum_none:
870 ip_summed = CHECKSUM_NONE;
871 hash_type = PKT_HASH_TYPE_L3;
872 ring->csum_none++;
873 }
874 skb->ip_summed = ip_summed;
875 if (dev->features & NETIF_F_RXHASH)
876 skb_set_hash(skb,
877 be32_to_cpu(cqe->immed_rss_invalid),
878 hash_type);
879
880 if ((cqe->vlan_my_qpn &
881 cpu_to_be32(MLX4_CQE_CVLAN_PRESENT_MASK)) &&
882 (dev->features & NETIF_F_HW_VLAN_CTAG_RX))
883 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
884 be16_to_cpu(cqe->sl_vid));
885 else if ((cqe->vlan_my_qpn &
886 cpu_to_be32(MLX4_CQE_SVLAN_PRESENT_MASK)) &&
887 (dev->features & NETIF_F_HW_VLAN_STAG_RX))
888 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021AD),
889 be16_to_cpu(cqe->sl_vid));
890
891 nr = mlx4_en_complete_rx_desc(priv, frags, skb, length);
892 if (likely(nr)) {
893 skb_shinfo(skb)->nr_frags = nr;
894 skb->len = length;
895 skb->data_len = length;
896 napi_gro_frags(&cq->napi);
897 } else {
898 skb->vlan_tci = 0;
899 skb_clear_hash(skb);
900 }
901 next:
902 ++cq->mcq.cons_index;
903 index = (cq->mcq.cons_index) & ring->size_mask;
904 cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor;
905 if (unlikely(++polled == budget))
906 break;
907 }
908
909 rcu_read_unlock();
910
911 if (likely(polled)) {
912 if (doorbell_pending) {
913 priv->tx_cq[TX_XDP][cq_ring]->xdp_busy = true;
914 mlx4_en_xmit_doorbell(priv->tx_ring[TX_XDP][cq_ring]);
915 }
916
917 mlx4_cq_set_ci(&cq->mcq);
918 wmb(); /* ensure HW sees CQ consumer before we post new buffers */
919 ring->cons = cq->mcq.cons_index;
920 }
921 AVG_PERF_COUNTER(priv->pstats.rx_coal_avg, polled);
922
923 mlx4_en_refill_rx_buffers(priv, ring);
924
925 return polled;
926 }
927
928
929 void mlx4_en_rx_irq(struct mlx4_cq *mcq)
930 {
931 struct mlx4_en_cq *cq = container_of(mcq, struct mlx4_en_cq, mcq);
932 struct mlx4_en_priv *priv = netdev_priv(cq->dev);
933
934 if (likely(priv->port_up))
935 napi_schedule_irqoff(&cq->napi);
936 else
937 mlx4_en_arm_cq(priv, cq);
938 }
939
940 /* Rx CQ polling - called by NAPI */
941 int mlx4_en_poll_rx_cq(struct napi_struct *napi, int budget)
942 {
943 struct mlx4_en_cq *cq = container_of(napi, struct mlx4_en_cq, napi);
944 struct net_device *dev = cq->dev;
945 struct mlx4_en_priv *priv = netdev_priv(dev);
946 struct mlx4_en_cq *xdp_tx_cq = NULL;
947 bool clean_complete = true;
948 int done;
949
950 if (priv->tx_ring_num[TX_XDP]) {
951 xdp_tx_cq = priv->tx_cq[TX_XDP][cq->ring];
952 if (xdp_tx_cq->xdp_busy) {
953 clean_complete = mlx4_en_process_tx_cq(dev, xdp_tx_cq,
954 budget);
955 xdp_tx_cq->xdp_busy = !clean_complete;
956 }
957 }
958
959 done = mlx4_en_process_rx_cq(dev, cq, budget);
960
961 /* If we used up all the quota - we're probably not done yet... */
962 if (done == budget || !clean_complete) {
963 const struct cpumask *aff;
964 struct irq_data *idata;
965 int cpu_curr;
966
967 /* in case we got here because of !clean_complete */
968 done = budget;
969
970 INC_PERF_COUNTER(priv->pstats.napi_quota);
971
972 cpu_curr = smp_processor_id();
973 idata = irq_desc_get_irq_data(cq->irq_desc);
974 aff = irq_data_get_affinity_mask(idata);
975
976 if (likely(cpumask_test_cpu(cpu_curr, aff)))
977 return budget;
978
979 /* Current cpu is not according to smp_irq_affinity -
980 * probably affinity changed. Need to stop this NAPI
981 * poll, and restart it on the right CPU.
982 * Try to avoid returning a too small value (like 0),
983 * to not fool net_rx_action() and its netdev_budget
984 */
985 if (done)
986 done--;
987 }
988 /* Done for now */
989 if (likely(napi_complete_done(napi, done)))
990 mlx4_en_arm_cq(priv, cq);
991 return done;
992 }
993
994 void mlx4_en_calc_rx_buf(struct net_device *dev)
995 {
996 struct mlx4_en_priv *priv = netdev_priv(dev);
997 int eff_mtu = MLX4_EN_EFF_MTU(dev->mtu);
998 int i = 0;
999
1000 /* bpf requires buffers to be set up as 1 packet per page.
1001 * This only works when num_frags == 1.
1002 */
1003 if (priv->tx_ring_num[TX_XDP]) {
1004 priv->frag_info[0].frag_size = eff_mtu;
1005 /* This will gain efficient xdp frame recycling at the
1006 * expense of more costly truesize accounting
1007 */
1008 priv->frag_info[0].frag_stride = PAGE_SIZE;
1009 priv->dma_dir = PCI_DMA_BIDIRECTIONAL;
1010 priv->rx_headroom = XDP_PACKET_HEADROOM;
1011 i = 1;
1012 } else {
1013 int frag_size_max = 2048, buf_size = 0;
1014
1015 /* should not happen, right ? */
1016 if (eff_mtu > PAGE_SIZE + (MLX4_EN_MAX_RX_FRAGS - 1) * 2048)
1017 frag_size_max = PAGE_SIZE;
1018
1019 while (buf_size < eff_mtu) {
1020 int frag_stride, frag_size = eff_mtu - buf_size;
1021 int pad, nb;
1022
1023 if (i < MLX4_EN_MAX_RX_FRAGS - 1)
1024 frag_size = min(frag_size, frag_size_max);
1025
1026 priv->frag_info[i].frag_size = frag_size;
1027 frag_stride = ALIGN(frag_size, SMP_CACHE_BYTES);
1028 /* We can only pack 2 1536-bytes frames in on 4K page
1029 * Therefore, each frame would consume more bytes (truesize)
1030 */
1031 nb = PAGE_SIZE / frag_stride;
1032 pad = (PAGE_SIZE - nb * frag_stride) / nb;
1033 pad &= ~(SMP_CACHE_BYTES - 1);
1034 priv->frag_info[i].frag_stride = frag_stride + pad;
1035
1036 buf_size += frag_size;
1037 i++;
1038 }
1039 priv->dma_dir = PCI_DMA_FROMDEVICE;
1040 priv->rx_headroom = 0;
1041 }
1042
1043 priv->num_frags = i;
1044 priv->rx_skb_size = eff_mtu;
1045 priv->log_rx_info = ROUNDUP_LOG2(i * sizeof(struct mlx4_en_rx_alloc));
1046
1047 en_dbg(DRV, priv, "Rx buffer scatter-list (effective-mtu:%d num_frags:%d):\n",
1048 eff_mtu, priv->num_frags);
1049 for (i = 0; i < priv->num_frags; i++) {
1050 en_dbg(DRV,
1051 priv,
1052 " frag:%d - size:%d stride:%d\n",
1053 i,
1054 priv->frag_info[i].frag_size,
1055 priv->frag_info[i].frag_stride);
1056 }
1057 }
1058
1059 /* RSS related functions */
1060
1061 static int mlx4_en_config_rss_qp(struct mlx4_en_priv *priv, int qpn,
1062 struct mlx4_en_rx_ring *ring,
1063 enum mlx4_qp_state *state,
1064 struct mlx4_qp *qp)
1065 {
1066 struct mlx4_en_dev *mdev = priv->mdev;
1067 struct mlx4_qp_context *context;
1068 int err = 0;
1069
1070 context = kmalloc(sizeof(*context), GFP_KERNEL);
1071 if (!context)
1072 return -ENOMEM;
1073
1074 err = mlx4_qp_alloc(mdev->dev, qpn, qp);
1075 if (err) {
1076 en_err(priv, "Failed to allocate qp #%x\n", qpn);
1077 goto out;
1078 }
1079 qp->event = mlx4_en_sqp_event;
1080
1081 memset(context, 0, sizeof(*context));
1082 mlx4_en_fill_qp_context(priv, ring->actual_size, ring->stride, 0, 0,
1083 qpn, ring->cqn, -1, context);
1084 context->db_rec_addr = cpu_to_be64(ring->wqres.db.dma);
1085
1086 /* Cancel FCS removal if FW allows */
1087 if (mdev->dev->caps.flags & MLX4_DEV_CAP_FLAG_FCS_KEEP) {
1088 context->param3 |= cpu_to_be32(1 << 29);
1089 if (priv->dev->features & NETIF_F_RXFCS)
1090 ring->fcs_del = 0;
1091 else
1092 ring->fcs_del = ETH_FCS_LEN;
1093 } else
1094 ring->fcs_del = 0;
1095
1096 err = mlx4_qp_to_ready(mdev->dev, &ring->wqres.mtt, context, qp, state);
1097 if (err) {
1098 mlx4_qp_remove(mdev->dev, qp);
1099 mlx4_qp_free(mdev->dev, qp);
1100 }
1101 mlx4_en_update_rx_prod_db(ring);
1102 out:
1103 kfree(context);
1104 return err;
1105 }
1106
1107 int mlx4_en_create_drop_qp(struct mlx4_en_priv *priv)
1108 {
1109 int err;
1110 u32 qpn;
1111
1112 err = mlx4_qp_reserve_range(priv->mdev->dev, 1, 1, &qpn,
1113 MLX4_RESERVE_A0_QP,
1114 MLX4_RES_USAGE_DRIVER);
1115 if (err) {
1116 en_err(priv, "Failed reserving drop qpn\n");
1117 return err;
1118 }
1119 err = mlx4_qp_alloc(priv->mdev->dev, qpn, &priv->drop_qp);
1120 if (err) {
1121 en_err(priv, "Failed allocating drop qp\n");
1122 mlx4_qp_release_range(priv->mdev->dev, qpn, 1);
1123 return err;
1124 }
1125
1126 return 0;
1127 }
1128
1129 void mlx4_en_destroy_drop_qp(struct mlx4_en_priv *priv)
1130 {
1131 u32 qpn;
1132
1133 qpn = priv->drop_qp.qpn;
1134 mlx4_qp_remove(priv->mdev->dev, &priv->drop_qp);
1135 mlx4_qp_free(priv->mdev->dev, &priv->drop_qp);
1136 mlx4_qp_release_range(priv->mdev->dev, qpn, 1);
1137 }
1138
1139 /* Allocate rx qp's and configure them according to rss map */
1140 int mlx4_en_config_rss_steer(struct mlx4_en_priv *priv)
1141 {
1142 struct mlx4_en_dev *mdev = priv->mdev;
1143 struct mlx4_en_rss_map *rss_map = &priv->rss_map;
1144 struct mlx4_qp_context context;
1145 struct mlx4_rss_context *rss_context;
1146 int rss_rings;
1147 void *ptr;
1148 u8 rss_mask = (MLX4_RSS_IPV4 | MLX4_RSS_TCP_IPV4 | MLX4_RSS_IPV6 |
1149 MLX4_RSS_TCP_IPV6);
1150 int i, qpn;
1151 int err = 0;
1152 int good_qps = 0;
1153 u8 flags;
1154
1155 en_dbg(DRV, priv, "Configuring rss steering\n");
1156
1157 flags = priv->rx_ring_num == 1 ? MLX4_RESERVE_A0_QP : 0;
1158 err = mlx4_qp_reserve_range(mdev->dev, priv->rx_ring_num,
1159 priv->rx_ring_num,
1160 &rss_map->base_qpn, flags,
1161 MLX4_RES_USAGE_DRIVER);
1162 if (err) {
1163 en_err(priv, "Failed reserving %d qps\n", priv->rx_ring_num);
1164 return err;
1165 }
1166
1167 for (i = 0; i < priv->rx_ring_num; i++) {
1168 qpn = rss_map->base_qpn + i;
1169 err = mlx4_en_config_rss_qp(priv, qpn, priv->rx_ring[i],
1170 &rss_map->state[i],
1171 &rss_map->qps[i]);
1172 if (err)
1173 goto rss_err;
1174
1175 ++good_qps;
1176 }
1177
1178 if (priv->rx_ring_num == 1) {
1179 rss_map->indir_qp = &rss_map->qps[0];
1180 priv->base_qpn = rss_map->indir_qp->qpn;
1181 en_info(priv, "Optimized Non-RSS steering\n");
1182 return 0;
1183 }
1184
1185 rss_map->indir_qp = kzalloc(sizeof(*rss_map->indir_qp), GFP_KERNEL);
1186 if (!rss_map->indir_qp) {
1187 err = -ENOMEM;
1188 goto rss_err;
1189 }
1190
1191 /* Configure RSS indirection qp */
1192 err = mlx4_qp_alloc(mdev->dev, priv->base_qpn, rss_map->indir_qp);
1193 if (err) {
1194 en_err(priv, "Failed to allocate RSS indirection QP\n");
1195 goto qp_alloc_err;
1196 }
1197
1198 rss_map->indir_qp->event = mlx4_en_sqp_event;
1199 mlx4_en_fill_qp_context(priv, 0, 0, 0, 1, priv->base_qpn,
1200 priv->rx_ring[0]->cqn, -1, &context);
1201
1202 if (!priv->prof->rss_rings || priv->prof->rss_rings > priv->rx_ring_num)
1203 rss_rings = priv->rx_ring_num;
1204 else
1205 rss_rings = priv->prof->rss_rings;
1206
1207 ptr = ((void *) &context) + offsetof(struct mlx4_qp_context, pri_path)
1208 + MLX4_RSS_OFFSET_IN_QPC_PRI_PATH;
1209 rss_context = ptr;
1210 rss_context->base_qpn = cpu_to_be32(ilog2(rss_rings) << 24 |
1211 (rss_map->base_qpn));
1212 rss_context->default_qpn = cpu_to_be32(rss_map->base_qpn);
1213 if (priv->mdev->profile.udp_rss) {
1214 rss_mask |= MLX4_RSS_UDP_IPV4 | MLX4_RSS_UDP_IPV6;
1215 rss_context->base_qpn_udp = rss_context->default_qpn;
1216 }
1217
1218 if (mdev->dev->caps.tunnel_offload_mode == MLX4_TUNNEL_OFFLOAD_MODE_VXLAN) {
1219 en_info(priv, "Setting RSS context tunnel type to RSS on inner headers\n");
1220 rss_mask |= MLX4_RSS_BY_INNER_HEADERS;
1221 }
1222
1223 rss_context->flags = rss_mask;
1224 rss_context->hash_fn = MLX4_RSS_HASH_TOP;
1225 if (priv->rss_hash_fn == ETH_RSS_HASH_XOR) {
1226 rss_context->hash_fn = MLX4_RSS_HASH_XOR;
1227 } else if (priv->rss_hash_fn == ETH_RSS_HASH_TOP) {
1228 rss_context->hash_fn = MLX4_RSS_HASH_TOP;
1229 memcpy(rss_context->rss_key, priv->rss_key,
1230 MLX4_EN_RSS_KEY_SIZE);
1231 } else {
1232 en_err(priv, "Unknown RSS hash function requested\n");
1233 err = -EINVAL;
1234 goto indir_err;
1235 }
1236
1237 err = mlx4_qp_to_ready(mdev->dev, &priv->res.mtt, &context,
1238 rss_map->indir_qp, &rss_map->indir_state);
1239 if (err)
1240 goto indir_err;
1241
1242 return 0;
1243
1244 indir_err:
1245 mlx4_qp_modify(mdev->dev, NULL, rss_map->indir_state,
1246 MLX4_QP_STATE_RST, NULL, 0, 0, rss_map->indir_qp);
1247 mlx4_qp_remove(mdev->dev, rss_map->indir_qp);
1248 mlx4_qp_free(mdev->dev, rss_map->indir_qp);
1249 qp_alloc_err:
1250 kfree(rss_map->indir_qp);
1251 rss_map->indir_qp = NULL;
1252 rss_err:
1253 for (i = 0; i < good_qps; i++) {
1254 mlx4_qp_modify(mdev->dev, NULL, rss_map->state[i],
1255 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->qps[i]);
1256 mlx4_qp_remove(mdev->dev, &rss_map->qps[i]);
1257 mlx4_qp_free(mdev->dev, &rss_map->qps[i]);
1258 }
1259 mlx4_qp_release_range(mdev->dev, rss_map->base_qpn, priv->rx_ring_num);
1260 return err;
1261 }
1262
1263 void mlx4_en_release_rss_steer(struct mlx4_en_priv *priv)
1264 {
1265 struct mlx4_en_dev *mdev = priv->mdev;
1266 struct mlx4_en_rss_map *rss_map = &priv->rss_map;
1267 int i;
1268
1269 if (priv->rx_ring_num > 1) {
1270 mlx4_qp_modify(mdev->dev, NULL, rss_map->indir_state,
1271 MLX4_QP_STATE_RST, NULL, 0, 0,
1272 rss_map->indir_qp);
1273 mlx4_qp_remove(mdev->dev, rss_map->indir_qp);
1274 mlx4_qp_free(mdev->dev, rss_map->indir_qp);
1275 kfree(rss_map->indir_qp);
1276 rss_map->indir_qp = NULL;
1277 }
1278
1279 for (i = 0; i < priv->rx_ring_num; i++) {
1280 mlx4_qp_modify(mdev->dev, NULL, rss_map->state[i],
1281 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->qps[i]);
1282 mlx4_qp_remove(mdev->dev, &rss_map->qps[i]);
1283 mlx4_qp_free(mdev->dev, &rss_map->qps[i]);
1284 }
1285 mlx4_qp_release_range(mdev->dev, rss_map->base_qpn, priv->rx_ring_num);
1286 }