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, int queue_index) 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 if (xdp_rxq_info_reg(&ring->xdp_rxq, priv->dev, queue_index) < 0) 290 goto err_ring; 291 292 tmp = size * roundup_pow_of_two(MLX4_EN_MAX_RX_FRAGS * 293 sizeof(struct mlx4_en_rx_alloc)); 294 ring->rx_info = vzalloc_node(tmp, node); 295 if (!ring->rx_info) { 296 ring->rx_info = vzalloc(tmp); 297 if (!ring->rx_info) { 298 err = -ENOMEM; 299 goto err_xdp_info; 300 } 301 } 302 303 en_dbg(DRV, priv, "Allocated rx_info ring at addr:%p size:%d\n", 304 ring->rx_info, tmp); 305 306 /* Allocate HW buffers on provided NUMA node */ 307 set_dev_node(&mdev->dev->persist->pdev->dev, node); 308 err = mlx4_alloc_hwq_res(mdev->dev, &ring->wqres, ring->buf_size); 309 set_dev_node(&mdev->dev->persist->pdev->dev, mdev->dev->numa_node); 310 if (err) 311 goto err_info; 312 313 ring->buf = ring->wqres.buf.direct.buf; 314 315 ring->hwtstamp_rx_filter = priv->hwtstamp_config.rx_filter; 316 317 *pring = ring; 318 return 0; 319 320 err_info: 321 vfree(ring->rx_info); 322 ring->rx_info = NULL; 323 err_xdp_info: 324 xdp_rxq_info_unreg(&ring->xdp_rxq); 325 err_ring: 326 kfree(ring); 327 *pring = NULL; 328 329 return err; 330 } 331 332 int mlx4_en_activate_rx_rings(struct mlx4_en_priv *priv) 333 { 334 struct mlx4_en_rx_ring *ring; 335 int i; 336 int ring_ind; 337 int err; 338 int stride = roundup_pow_of_two(sizeof(struct mlx4_en_rx_desc) + 339 DS_SIZE * priv->num_frags); 340 341 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) { 342 ring = priv->rx_ring[ring_ind]; 343 344 ring->prod = 0; 345 ring->cons = 0; 346 ring->actual_size = 0; 347 ring->cqn = priv->rx_cq[ring_ind]->mcq.cqn; 348 349 ring->stride = stride; 350 if (ring->stride <= TXBB_SIZE) { 351 /* Stamp first unused send wqe */ 352 __be32 *ptr = (__be32 *)ring->buf; 353 __be32 stamp = cpu_to_be32(1 << STAMP_SHIFT); 354 *ptr = stamp; 355 /* Move pointer to start of rx section */ 356 ring->buf += TXBB_SIZE; 357 } 358 359 ring->log_stride = ffs(ring->stride) - 1; 360 ring->buf_size = ring->size * ring->stride; 361 362 memset(ring->buf, 0, ring->buf_size); 363 mlx4_en_update_rx_prod_db(ring); 364 365 /* Initialize all descriptors */ 366 for (i = 0; i < ring->size; i++) 367 mlx4_en_init_rx_desc(priv, ring, i); 368 } 369 err = mlx4_en_fill_rx_buffers(priv); 370 if (err) 371 goto err_buffers; 372 373 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) { 374 ring = priv->rx_ring[ring_ind]; 375 376 ring->size_mask = ring->actual_size - 1; 377 mlx4_en_update_rx_prod_db(ring); 378 } 379 380 return 0; 381 382 err_buffers: 383 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) 384 mlx4_en_free_rx_buf(priv, priv->rx_ring[ring_ind]); 385 386 ring_ind = priv->rx_ring_num - 1; 387 while (ring_ind >= 0) { 388 if (priv->rx_ring[ring_ind]->stride <= TXBB_SIZE) 389 priv->rx_ring[ring_ind]->buf -= TXBB_SIZE; 390 ring_ind--; 391 } 392 return err; 393 } 394 395 /* We recover from out of memory by scheduling our napi poll 396 * function (mlx4_en_process_cq), which tries to allocate 397 * all missing RX buffers (call to mlx4_en_refill_rx_buffers). 398 */ 399 void mlx4_en_recover_from_oom(struct mlx4_en_priv *priv) 400 { 401 int ring; 402 403 if (!priv->port_up) 404 return; 405 406 for (ring = 0; ring < priv->rx_ring_num; ring++) { 407 if (mlx4_en_is_ring_empty(priv->rx_ring[ring])) { 408 local_bh_disable(); 409 napi_reschedule(&priv->rx_cq[ring]->napi); 410 local_bh_enable(); 411 } 412 } 413 } 414 415 /* When the rx ring is running in page-per-packet mode, a released frame can go 416 * directly into a small cache, to avoid unmapping or touching the page 417 * allocator. In bpf prog performance scenarios, buffers are either forwarded 418 * or dropped, never converted to skbs, so every page can come directly from 419 * this cache when it is sized to be a multiple of the napi budget. 420 */ 421 bool mlx4_en_rx_recycle(struct mlx4_en_rx_ring *ring, 422 struct mlx4_en_rx_alloc *frame) 423 { 424 struct mlx4_en_page_cache *cache = &ring->page_cache; 425 426 if (cache->index >= MLX4_EN_CACHE_SIZE) 427 return false; 428 429 cache->buf[cache->index].page = frame->page; 430 cache->buf[cache->index].dma = frame->dma; 431 cache->index++; 432 return true; 433 } 434 435 void mlx4_en_destroy_rx_ring(struct mlx4_en_priv *priv, 436 struct mlx4_en_rx_ring **pring, 437 u32 size, u16 stride) 438 { 439 struct mlx4_en_dev *mdev = priv->mdev; 440 struct mlx4_en_rx_ring *ring = *pring; 441 struct bpf_prog *old_prog; 442 443 old_prog = rcu_dereference_protected( 444 ring->xdp_prog, 445 lockdep_is_held(&mdev->state_lock)); 446 if (old_prog) 447 bpf_prog_put(old_prog); 448 xdp_rxq_info_unreg(&ring->xdp_rxq); 449 mlx4_free_hwq_res(mdev->dev, &ring->wqres, size * stride + TXBB_SIZE); 450 vfree(ring->rx_info); 451 ring->rx_info = NULL; 452 kfree(ring); 453 *pring = NULL; 454 } 455 456 void mlx4_en_deactivate_rx_ring(struct mlx4_en_priv *priv, 457 struct mlx4_en_rx_ring *ring) 458 { 459 int i; 460 461 for (i = 0; i < ring->page_cache.index; i++) { 462 dma_unmap_page(priv->ddev, ring->page_cache.buf[i].dma, 463 PAGE_SIZE, priv->dma_dir); 464 put_page(ring->page_cache.buf[i].page); 465 } 466 ring->page_cache.index = 0; 467 mlx4_en_free_rx_buf(priv, ring); 468 if (ring->stride <= TXBB_SIZE) 469 ring->buf -= TXBB_SIZE; 470 } 471 472 473 static int mlx4_en_complete_rx_desc(struct mlx4_en_priv *priv, 474 struct mlx4_en_rx_alloc *frags, 475 struct sk_buff *skb, 476 int length) 477 { 478 const struct mlx4_en_frag_info *frag_info = priv->frag_info; 479 unsigned int truesize = 0; 480 int nr, frag_size; 481 struct page *page; 482 dma_addr_t dma; 483 bool release; 484 485 /* Collect used fragments while replacing them in the HW descriptors */ 486 for (nr = 0;; frags++) { 487 frag_size = min_t(int, length, frag_info->frag_size); 488 489 page = frags->page; 490 if (unlikely(!page)) 491 goto fail; 492 493 dma = frags->dma; 494 dma_sync_single_range_for_cpu(priv->ddev, dma, frags->page_offset, 495 frag_size, priv->dma_dir); 496 497 __skb_fill_page_desc(skb, nr, page, frags->page_offset, 498 frag_size); 499 500 truesize += frag_info->frag_stride; 501 if (frag_info->frag_stride == PAGE_SIZE / 2) { 502 frags->page_offset ^= PAGE_SIZE / 2; 503 release = page_count(page) != 1 || 504 page_is_pfmemalloc(page) || 505 page_to_nid(page) != numa_mem_id(); 506 } else { 507 u32 sz_align = ALIGN(frag_size, SMP_CACHE_BYTES); 508 509 frags->page_offset += sz_align; 510 release = frags->page_offset + frag_info->frag_size > PAGE_SIZE; 511 } 512 if (release) { 513 dma_unmap_page(priv->ddev, dma, PAGE_SIZE, priv->dma_dir); 514 frags->page = NULL; 515 } else { 516 page_ref_inc(page); 517 } 518 519 nr++; 520 length -= frag_size; 521 if (!length) 522 break; 523 frag_info++; 524 } 525 skb->truesize += truesize; 526 return nr; 527 528 fail: 529 while (nr > 0) { 530 nr--; 531 __skb_frag_unref(skb_shinfo(skb)->frags + nr); 532 } 533 return 0; 534 } 535 536 static void validate_loopback(struct mlx4_en_priv *priv, void *va) 537 { 538 const unsigned char *data = va + ETH_HLEN; 539 int i; 540 541 for (i = 0; i < MLX4_LOOPBACK_TEST_PAYLOAD; i++) { 542 if (data[i] != (unsigned char)i) 543 return; 544 } 545 /* Loopback found */ 546 priv->loopback_ok = 1; 547 } 548 549 static void mlx4_en_refill_rx_buffers(struct mlx4_en_priv *priv, 550 struct mlx4_en_rx_ring *ring) 551 { 552 u32 missing = ring->actual_size - (ring->prod - ring->cons); 553 554 /* Try to batch allocations, but not too much. */ 555 if (missing < 8) 556 return; 557 do { 558 if (mlx4_en_prepare_rx_desc(priv, ring, 559 ring->prod & ring->size_mask, 560 GFP_ATOMIC | __GFP_MEMALLOC)) 561 break; 562 ring->prod++; 563 } while (likely(--missing)); 564 565 mlx4_en_update_rx_prod_db(ring); 566 } 567 568 /* When hardware doesn't strip the vlan, we need to calculate the checksum 569 * over it and add it to the hardware's checksum calculation 570 */ 571 static inline __wsum get_fixed_vlan_csum(__wsum hw_checksum, 572 struct vlan_hdr *vlanh) 573 { 574 return csum_add(hw_checksum, *(__wsum *)vlanh); 575 } 576 577 /* Although the stack expects checksum which doesn't include the pseudo 578 * header, the HW adds it. To address that, we are subtracting the pseudo 579 * header checksum from the checksum value provided by the HW. 580 */ 581 static int get_fixed_ipv4_csum(__wsum hw_checksum, struct sk_buff *skb, 582 struct iphdr *iph) 583 { 584 __u16 length_for_csum = 0; 585 __wsum csum_pseudo_header = 0; 586 __u8 ipproto = iph->protocol; 587 588 if (unlikely(ipproto == IPPROTO_SCTP)) 589 return -1; 590 591 length_for_csum = (be16_to_cpu(iph->tot_len) - (iph->ihl << 2)); 592 csum_pseudo_header = csum_tcpudp_nofold(iph->saddr, iph->daddr, 593 length_for_csum, ipproto, 0); 594 skb->csum = csum_sub(hw_checksum, csum_pseudo_header); 595 return 0; 596 } 597 598 #if IS_ENABLED(CONFIG_IPV6) 599 /* In IPv6 packets, besides subtracting the pseudo header checksum, 600 * we also compute/add the IP header checksum which 601 * is not added by the HW. 602 */ 603 static int get_fixed_ipv6_csum(__wsum hw_checksum, struct sk_buff *skb, 604 struct ipv6hdr *ipv6h) 605 { 606 __u8 nexthdr = ipv6h->nexthdr; 607 __wsum csum_pseudo_hdr = 0; 608 609 if (unlikely(nexthdr == IPPROTO_FRAGMENT || 610 nexthdr == IPPROTO_HOPOPTS || 611 nexthdr == IPPROTO_SCTP)) 612 return -1; 613 hw_checksum = csum_add(hw_checksum, (__force __wsum)htons(nexthdr)); 614 615 csum_pseudo_hdr = csum_partial(&ipv6h->saddr, 616 sizeof(ipv6h->saddr) + sizeof(ipv6h->daddr), 0); 617 csum_pseudo_hdr = csum_add(csum_pseudo_hdr, (__force __wsum)ipv6h->payload_len); 618 csum_pseudo_hdr = csum_add(csum_pseudo_hdr, 619 (__force __wsum)htons(nexthdr)); 620 621 skb->csum = csum_sub(hw_checksum, csum_pseudo_hdr); 622 skb->csum = csum_add(skb->csum, csum_partial(ipv6h, sizeof(struct ipv6hdr), 0)); 623 return 0; 624 } 625 #endif 626 627 /* We reach this function only after checking that any of 628 * the (IPv4 | IPv6) bits are set in cqe->status. 629 */ 630 static int check_csum(struct mlx4_cqe *cqe, struct sk_buff *skb, void *va, 631 netdev_features_t dev_features) 632 { 633 __wsum hw_checksum = 0; 634 635 void *hdr = (u8 *)va + sizeof(struct ethhdr); 636 637 hw_checksum = csum_unfold((__force __sum16)cqe->checksum); 638 639 if (cqe->vlan_my_qpn & cpu_to_be32(MLX4_CQE_CVLAN_PRESENT_MASK) && 640 !(dev_features & NETIF_F_HW_VLAN_CTAG_RX)) { 641 hw_checksum = get_fixed_vlan_csum(hw_checksum, hdr); 642 hdr += sizeof(struct vlan_hdr); 643 } 644 645 #if IS_ENABLED(CONFIG_IPV6) 646 if (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPV6)) 647 return get_fixed_ipv6_csum(hw_checksum, skb, hdr); 648 #endif 649 return get_fixed_ipv4_csum(hw_checksum, skb, hdr); 650 } 651 652 int mlx4_en_process_rx_cq(struct net_device *dev, struct mlx4_en_cq *cq, int budget) 653 { 654 struct mlx4_en_priv *priv = netdev_priv(dev); 655 int factor = priv->cqe_factor; 656 struct mlx4_en_rx_ring *ring; 657 struct bpf_prog *xdp_prog; 658 int cq_ring = cq->ring; 659 bool doorbell_pending; 660 struct mlx4_cqe *cqe; 661 struct xdp_buff xdp; 662 int polled = 0; 663 int index; 664 665 if (unlikely(!priv->port_up)) 666 return 0; 667 668 if (unlikely(budget <= 0)) 669 return polled; 670 671 ring = priv->rx_ring[cq_ring]; 672 673 /* Protect accesses to: ring->xdp_prog, priv->mac_hash list */ 674 rcu_read_lock(); 675 xdp_prog = rcu_dereference(ring->xdp_prog); 676 xdp.rxq = &ring->xdp_rxq; 677 doorbell_pending = 0; 678 679 /* We assume a 1:1 mapping between CQEs and Rx descriptors, so Rx 680 * descriptor offset can be deduced from the CQE index instead of 681 * reading 'cqe->index' */ 682 index = cq->mcq.cons_index & ring->size_mask; 683 cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor; 684 685 /* Process all completed CQEs */ 686 while (XNOR(cqe->owner_sr_opcode & MLX4_CQE_OWNER_MASK, 687 cq->mcq.cons_index & cq->size)) { 688 struct mlx4_en_rx_alloc *frags; 689 enum pkt_hash_types hash_type; 690 struct sk_buff *skb; 691 unsigned int length; 692 int ip_summed; 693 void *va; 694 int nr; 695 696 frags = ring->rx_info + (index << priv->log_rx_info); 697 va = page_address(frags[0].page) + frags[0].page_offset; 698 prefetchw(va); 699 /* 700 * make sure we read the CQE after we read the ownership bit 701 */ 702 dma_rmb(); 703 704 /* Drop packet on bad receive or bad checksum */ 705 if (unlikely((cqe->owner_sr_opcode & MLX4_CQE_OPCODE_MASK) == 706 MLX4_CQE_OPCODE_ERROR)) { 707 en_err(priv, "CQE completed in error - vendor syndrom:%d syndrom:%d\n", 708 ((struct mlx4_err_cqe *)cqe)->vendor_err_syndrome, 709 ((struct mlx4_err_cqe *)cqe)->syndrome); 710 goto next; 711 } 712 if (unlikely(cqe->badfcs_enc & MLX4_CQE_BAD_FCS)) { 713 en_dbg(RX_ERR, priv, "Accepted frame with bad FCS\n"); 714 goto next; 715 } 716 717 /* Check if we need to drop the packet if SRIOV is not enabled 718 * and not performing the selftest or flb disabled 719 */ 720 if (priv->flags & MLX4_EN_FLAG_RX_FILTER_NEEDED) { 721 const struct ethhdr *ethh = va; 722 dma_addr_t dma; 723 /* Get pointer to first fragment since we haven't 724 * skb yet and cast it to ethhdr struct 725 */ 726 dma = frags[0].dma + frags[0].page_offset; 727 dma_sync_single_for_cpu(priv->ddev, dma, sizeof(*ethh), 728 DMA_FROM_DEVICE); 729 730 if (is_multicast_ether_addr(ethh->h_dest)) { 731 struct mlx4_mac_entry *entry; 732 struct hlist_head *bucket; 733 unsigned int mac_hash; 734 735 /* Drop the packet, since HW loopback-ed it */ 736 mac_hash = ethh->h_source[MLX4_EN_MAC_HASH_IDX]; 737 bucket = &priv->mac_hash[mac_hash]; 738 hlist_for_each_entry_rcu(entry, bucket, hlist) { 739 if (ether_addr_equal_64bits(entry->mac, 740 ethh->h_source)) 741 goto next; 742 } 743 } 744 } 745 746 if (unlikely(priv->validate_loopback)) { 747 validate_loopback(priv, va); 748 goto next; 749 } 750 751 /* 752 * Packet is OK - process it. 753 */ 754 length = be32_to_cpu(cqe->byte_cnt); 755 length -= ring->fcs_del; 756 757 /* A bpf program gets first chance to drop the packet. It may 758 * read bytes but not past the end of the frag. 759 */ 760 if (xdp_prog) { 761 dma_addr_t dma; 762 void *orig_data; 763 u32 act; 764 765 dma = frags[0].dma + frags[0].page_offset; 766 dma_sync_single_for_cpu(priv->ddev, dma, 767 priv->frag_info[0].frag_size, 768 DMA_FROM_DEVICE); 769 770 xdp.data_hard_start = va - frags[0].page_offset; 771 xdp.data = va; 772 xdp_set_data_meta_invalid(&xdp); 773 xdp.data_end = xdp.data + length; 774 orig_data = xdp.data; 775 776 act = bpf_prog_run_xdp(xdp_prog, &xdp); 777 778 if (xdp.data != orig_data) { 779 length = xdp.data_end - xdp.data; 780 frags[0].page_offset = xdp.data - 781 xdp.data_hard_start; 782 va = xdp.data; 783 } 784 785 switch (act) { 786 case XDP_PASS: 787 break; 788 case XDP_TX: 789 if (likely(!mlx4_en_xmit_frame(ring, frags, priv, 790 length, cq_ring, 791 &doorbell_pending))) { 792 frags[0].page = NULL; 793 goto next; 794 } 795 trace_xdp_exception(dev, xdp_prog, act); 796 goto xdp_drop_no_cnt; /* Drop on xmit failure */ 797 default: 798 bpf_warn_invalid_xdp_action(act); 799 case XDP_ABORTED: 800 trace_xdp_exception(dev, xdp_prog, act); 801 case XDP_DROP: 802 ring->xdp_drop++; 803 xdp_drop_no_cnt: 804 goto next; 805 } 806 } 807 808 ring->bytes += length; 809 ring->packets++; 810 811 skb = napi_get_frags(&cq->napi); 812 if (unlikely(!skb)) 813 goto next; 814 815 if (unlikely(ring->hwtstamp_rx_filter == HWTSTAMP_FILTER_ALL)) { 816 u64 timestamp = mlx4_en_get_cqe_ts(cqe); 817 818 mlx4_en_fill_hwtstamps(priv->mdev, skb_hwtstamps(skb), 819 timestamp); 820 } 821 skb_record_rx_queue(skb, cq_ring); 822 823 if (likely(dev->features & NETIF_F_RXCSUM)) { 824 if (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_TCP | 825 MLX4_CQE_STATUS_UDP)) { 826 bool l2_tunnel; 827 828 if (!((cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPOK)) && 829 cqe->checksum == cpu_to_be16(0xffff))) 830 goto csum_none; 831 832 l2_tunnel = (dev->hw_enc_features & NETIF_F_RXCSUM) && 833 (cqe->vlan_my_qpn & cpu_to_be32(MLX4_CQE_L2_TUNNEL)); 834 ip_summed = CHECKSUM_UNNECESSARY; 835 hash_type = PKT_HASH_TYPE_L4; 836 if (l2_tunnel) 837 skb->csum_level = 1; 838 ring->csum_ok++; 839 } else { 840 if (!(priv->flags & MLX4_EN_FLAG_RX_CSUM_NON_TCP_UDP && 841 (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPV4 | 842 #if IS_ENABLED(CONFIG_IPV6) 843 MLX4_CQE_STATUS_IPV6)))) 844 #else 845 0)))) 846 #endif 847 goto csum_none; 848 if (check_csum(cqe, skb, va, dev->features)) 849 goto csum_none; 850 ip_summed = CHECKSUM_COMPLETE; 851 hash_type = PKT_HASH_TYPE_L3; 852 ring->csum_complete++; 853 } 854 } else { 855 csum_none: 856 ip_summed = CHECKSUM_NONE; 857 hash_type = PKT_HASH_TYPE_L3; 858 ring->csum_none++; 859 } 860 skb->ip_summed = ip_summed; 861 if (dev->features & NETIF_F_RXHASH) 862 skb_set_hash(skb, 863 be32_to_cpu(cqe->immed_rss_invalid), 864 hash_type); 865 866 if ((cqe->vlan_my_qpn & 867 cpu_to_be32(MLX4_CQE_CVLAN_PRESENT_MASK)) && 868 (dev->features & NETIF_F_HW_VLAN_CTAG_RX)) 869 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), 870 be16_to_cpu(cqe->sl_vid)); 871 else if ((cqe->vlan_my_qpn & 872 cpu_to_be32(MLX4_CQE_SVLAN_PRESENT_MASK)) && 873 (dev->features & NETIF_F_HW_VLAN_STAG_RX)) 874 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021AD), 875 be16_to_cpu(cqe->sl_vid)); 876 877 nr = mlx4_en_complete_rx_desc(priv, frags, skb, length); 878 if (likely(nr)) { 879 skb_shinfo(skb)->nr_frags = nr; 880 skb->len = length; 881 skb->data_len = length; 882 napi_gro_frags(&cq->napi); 883 } else { 884 skb->vlan_tci = 0; 885 skb_clear_hash(skb); 886 } 887 next: 888 ++cq->mcq.cons_index; 889 index = (cq->mcq.cons_index) & ring->size_mask; 890 cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor; 891 if (unlikely(++polled == budget)) 892 break; 893 } 894 895 rcu_read_unlock(); 896 897 if (likely(polled)) { 898 if (doorbell_pending) { 899 priv->tx_cq[TX_XDP][cq_ring]->xdp_busy = true; 900 mlx4_en_xmit_doorbell(priv->tx_ring[TX_XDP][cq_ring]); 901 } 902 903 mlx4_cq_set_ci(&cq->mcq); 904 wmb(); /* ensure HW sees CQ consumer before we post new buffers */ 905 ring->cons = cq->mcq.cons_index; 906 } 907 AVG_PERF_COUNTER(priv->pstats.rx_coal_avg, polled); 908 909 mlx4_en_refill_rx_buffers(priv, ring); 910 911 return polled; 912 } 913 914 915 void mlx4_en_rx_irq(struct mlx4_cq *mcq) 916 { 917 struct mlx4_en_cq *cq = container_of(mcq, struct mlx4_en_cq, mcq); 918 struct mlx4_en_priv *priv = netdev_priv(cq->dev); 919 920 if (likely(priv->port_up)) 921 napi_schedule_irqoff(&cq->napi); 922 else 923 mlx4_en_arm_cq(priv, cq); 924 } 925 926 /* Rx CQ polling - called by NAPI */ 927 int mlx4_en_poll_rx_cq(struct napi_struct *napi, int budget) 928 { 929 struct mlx4_en_cq *cq = container_of(napi, struct mlx4_en_cq, napi); 930 struct net_device *dev = cq->dev; 931 struct mlx4_en_priv *priv = netdev_priv(dev); 932 struct mlx4_en_cq *xdp_tx_cq = NULL; 933 bool clean_complete = true; 934 int done; 935 936 if (priv->tx_ring_num[TX_XDP]) { 937 xdp_tx_cq = priv->tx_cq[TX_XDP][cq->ring]; 938 if (xdp_tx_cq->xdp_busy) { 939 clean_complete = mlx4_en_process_tx_cq(dev, xdp_tx_cq, 940 budget); 941 xdp_tx_cq->xdp_busy = !clean_complete; 942 } 943 } 944 945 done = mlx4_en_process_rx_cq(dev, cq, budget); 946 947 /* If we used up all the quota - we're probably not done yet... */ 948 if (done == budget || !clean_complete) { 949 const struct cpumask *aff; 950 struct irq_data *idata; 951 int cpu_curr; 952 953 /* in case we got here because of !clean_complete */ 954 done = budget; 955 956 INC_PERF_COUNTER(priv->pstats.napi_quota); 957 958 cpu_curr = smp_processor_id(); 959 idata = irq_desc_get_irq_data(cq->irq_desc); 960 aff = irq_data_get_affinity_mask(idata); 961 962 if (likely(cpumask_test_cpu(cpu_curr, aff))) 963 return budget; 964 965 /* Current cpu is not according to smp_irq_affinity - 966 * probably affinity changed. Need to stop this NAPI 967 * poll, and restart it on the right CPU. 968 * Try to avoid returning a too small value (like 0), 969 * to not fool net_rx_action() and its netdev_budget 970 */ 971 if (done) 972 done--; 973 } 974 /* Done for now */ 975 if (likely(napi_complete_done(napi, done))) 976 mlx4_en_arm_cq(priv, cq); 977 return done; 978 } 979 980 void mlx4_en_calc_rx_buf(struct net_device *dev) 981 { 982 struct mlx4_en_priv *priv = netdev_priv(dev); 983 int eff_mtu = MLX4_EN_EFF_MTU(dev->mtu); 984 int i = 0; 985 986 /* bpf requires buffers to be set up as 1 packet per page. 987 * This only works when num_frags == 1. 988 */ 989 if (priv->tx_ring_num[TX_XDP]) { 990 priv->frag_info[0].frag_size = eff_mtu; 991 /* This will gain efficient xdp frame recycling at the 992 * expense of more costly truesize accounting 993 */ 994 priv->frag_info[0].frag_stride = PAGE_SIZE; 995 priv->dma_dir = PCI_DMA_BIDIRECTIONAL; 996 priv->rx_headroom = XDP_PACKET_HEADROOM; 997 i = 1; 998 } else { 999 int frag_size_max = 2048, buf_size = 0; 1000 1001 /* should not happen, right ? */ 1002 if (eff_mtu > PAGE_SIZE + (MLX4_EN_MAX_RX_FRAGS - 1) * 2048) 1003 frag_size_max = PAGE_SIZE; 1004 1005 while (buf_size < eff_mtu) { 1006 int frag_stride, frag_size = eff_mtu - buf_size; 1007 int pad, nb; 1008 1009 if (i < MLX4_EN_MAX_RX_FRAGS - 1) 1010 frag_size = min(frag_size, frag_size_max); 1011 1012 priv->frag_info[i].frag_size = frag_size; 1013 frag_stride = ALIGN(frag_size, SMP_CACHE_BYTES); 1014 /* We can only pack 2 1536-bytes frames in on 4K page 1015 * Therefore, each frame would consume more bytes (truesize) 1016 */ 1017 nb = PAGE_SIZE / frag_stride; 1018 pad = (PAGE_SIZE - nb * frag_stride) / nb; 1019 pad &= ~(SMP_CACHE_BYTES - 1); 1020 priv->frag_info[i].frag_stride = frag_stride + pad; 1021 1022 buf_size += frag_size; 1023 i++; 1024 } 1025 priv->dma_dir = PCI_DMA_FROMDEVICE; 1026 priv->rx_headroom = 0; 1027 } 1028 1029 priv->num_frags = i; 1030 priv->rx_skb_size = eff_mtu; 1031 priv->log_rx_info = ROUNDUP_LOG2(i * sizeof(struct mlx4_en_rx_alloc)); 1032 1033 en_dbg(DRV, priv, "Rx buffer scatter-list (effective-mtu:%d num_frags:%d):\n", 1034 eff_mtu, priv->num_frags); 1035 for (i = 0; i < priv->num_frags; i++) { 1036 en_dbg(DRV, 1037 priv, 1038 " frag:%d - size:%d stride:%d\n", 1039 i, 1040 priv->frag_info[i].frag_size, 1041 priv->frag_info[i].frag_stride); 1042 } 1043 } 1044 1045 /* RSS related functions */ 1046 1047 static int mlx4_en_config_rss_qp(struct mlx4_en_priv *priv, int qpn, 1048 struct mlx4_en_rx_ring *ring, 1049 enum mlx4_qp_state *state, 1050 struct mlx4_qp *qp) 1051 { 1052 struct mlx4_en_dev *mdev = priv->mdev; 1053 struct mlx4_qp_context *context; 1054 int err = 0; 1055 1056 context = kmalloc(sizeof(*context), GFP_KERNEL); 1057 if (!context) 1058 return -ENOMEM; 1059 1060 err = mlx4_qp_alloc(mdev->dev, qpn, qp); 1061 if (err) { 1062 en_err(priv, "Failed to allocate qp #%x\n", qpn); 1063 goto out; 1064 } 1065 qp->event = mlx4_en_sqp_event; 1066 1067 memset(context, 0, sizeof(*context)); 1068 mlx4_en_fill_qp_context(priv, ring->actual_size, ring->stride, 0, 0, 1069 qpn, ring->cqn, -1, context); 1070 context->db_rec_addr = cpu_to_be64(ring->wqres.db.dma); 1071 1072 /* Cancel FCS removal if FW allows */ 1073 if (mdev->dev->caps.flags & MLX4_DEV_CAP_FLAG_FCS_KEEP) { 1074 context->param3 |= cpu_to_be32(1 << 29); 1075 if (priv->dev->features & NETIF_F_RXFCS) 1076 ring->fcs_del = 0; 1077 else 1078 ring->fcs_del = ETH_FCS_LEN; 1079 } else 1080 ring->fcs_del = 0; 1081 1082 err = mlx4_qp_to_ready(mdev->dev, &ring->wqres.mtt, context, qp, state); 1083 if (err) { 1084 mlx4_qp_remove(mdev->dev, qp); 1085 mlx4_qp_free(mdev->dev, qp); 1086 } 1087 mlx4_en_update_rx_prod_db(ring); 1088 out: 1089 kfree(context); 1090 return err; 1091 } 1092 1093 int mlx4_en_create_drop_qp(struct mlx4_en_priv *priv) 1094 { 1095 int err; 1096 u32 qpn; 1097 1098 err = mlx4_qp_reserve_range(priv->mdev->dev, 1, 1, &qpn, 1099 MLX4_RESERVE_A0_QP, 1100 MLX4_RES_USAGE_DRIVER); 1101 if (err) { 1102 en_err(priv, "Failed reserving drop qpn\n"); 1103 return err; 1104 } 1105 err = mlx4_qp_alloc(priv->mdev->dev, qpn, &priv->drop_qp); 1106 if (err) { 1107 en_err(priv, "Failed allocating drop qp\n"); 1108 mlx4_qp_release_range(priv->mdev->dev, qpn, 1); 1109 return err; 1110 } 1111 1112 return 0; 1113 } 1114 1115 void mlx4_en_destroy_drop_qp(struct mlx4_en_priv *priv) 1116 { 1117 u32 qpn; 1118 1119 qpn = priv->drop_qp.qpn; 1120 mlx4_qp_remove(priv->mdev->dev, &priv->drop_qp); 1121 mlx4_qp_free(priv->mdev->dev, &priv->drop_qp); 1122 mlx4_qp_release_range(priv->mdev->dev, qpn, 1); 1123 } 1124 1125 /* Allocate rx qp's and configure them according to rss map */ 1126 int mlx4_en_config_rss_steer(struct mlx4_en_priv *priv) 1127 { 1128 struct mlx4_en_dev *mdev = priv->mdev; 1129 struct mlx4_en_rss_map *rss_map = &priv->rss_map; 1130 struct mlx4_qp_context context; 1131 struct mlx4_rss_context *rss_context; 1132 int rss_rings; 1133 void *ptr; 1134 u8 rss_mask = (MLX4_RSS_IPV4 | MLX4_RSS_TCP_IPV4 | MLX4_RSS_IPV6 | 1135 MLX4_RSS_TCP_IPV6); 1136 int i, qpn; 1137 int err = 0; 1138 int good_qps = 0; 1139 u8 flags; 1140 1141 en_dbg(DRV, priv, "Configuring rss steering\n"); 1142 1143 flags = priv->rx_ring_num == 1 ? MLX4_RESERVE_A0_QP : 0; 1144 err = mlx4_qp_reserve_range(mdev->dev, priv->rx_ring_num, 1145 priv->rx_ring_num, 1146 &rss_map->base_qpn, flags, 1147 MLX4_RES_USAGE_DRIVER); 1148 if (err) { 1149 en_err(priv, "Failed reserving %d qps\n", priv->rx_ring_num); 1150 return err; 1151 } 1152 1153 for (i = 0; i < priv->rx_ring_num; i++) { 1154 qpn = rss_map->base_qpn + i; 1155 err = mlx4_en_config_rss_qp(priv, qpn, priv->rx_ring[i], 1156 &rss_map->state[i], 1157 &rss_map->qps[i]); 1158 if (err) 1159 goto rss_err; 1160 1161 ++good_qps; 1162 } 1163 1164 if (priv->rx_ring_num == 1) { 1165 rss_map->indir_qp = &rss_map->qps[0]; 1166 priv->base_qpn = rss_map->indir_qp->qpn; 1167 en_info(priv, "Optimized Non-RSS steering\n"); 1168 return 0; 1169 } 1170 1171 rss_map->indir_qp = kzalloc(sizeof(*rss_map->indir_qp), GFP_KERNEL); 1172 if (!rss_map->indir_qp) { 1173 err = -ENOMEM; 1174 goto rss_err; 1175 } 1176 1177 /* Configure RSS indirection qp */ 1178 err = mlx4_qp_alloc(mdev->dev, priv->base_qpn, rss_map->indir_qp); 1179 if (err) { 1180 en_err(priv, "Failed to allocate RSS indirection QP\n"); 1181 goto rss_err; 1182 } 1183 1184 rss_map->indir_qp->event = mlx4_en_sqp_event; 1185 mlx4_en_fill_qp_context(priv, 0, 0, 0, 1, priv->base_qpn, 1186 priv->rx_ring[0]->cqn, -1, &context); 1187 1188 if (!priv->prof->rss_rings || priv->prof->rss_rings > priv->rx_ring_num) 1189 rss_rings = priv->rx_ring_num; 1190 else 1191 rss_rings = priv->prof->rss_rings; 1192 1193 ptr = ((void *) &context) + offsetof(struct mlx4_qp_context, pri_path) 1194 + MLX4_RSS_OFFSET_IN_QPC_PRI_PATH; 1195 rss_context = ptr; 1196 rss_context->base_qpn = cpu_to_be32(ilog2(rss_rings) << 24 | 1197 (rss_map->base_qpn)); 1198 rss_context->default_qpn = cpu_to_be32(rss_map->base_qpn); 1199 if (priv->mdev->profile.udp_rss) { 1200 rss_mask |= MLX4_RSS_UDP_IPV4 | MLX4_RSS_UDP_IPV6; 1201 rss_context->base_qpn_udp = rss_context->default_qpn; 1202 } 1203 1204 if (mdev->dev->caps.tunnel_offload_mode == MLX4_TUNNEL_OFFLOAD_MODE_VXLAN) { 1205 en_info(priv, "Setting RSS context tunnel type to RSS on inner headers\n"); 1206 rss_mask |= MLX4_RSS_BY_INNER_HEADERS; 1207 } 1208 1209 rss_context->flags = rss_mask; 1210 rss_context->hash_fn = MLX4_RSS_HASH_TOP; 1211 if (priv->rss_hash_fn == ETH_RSS_HASH_XOR) { 1212 rss_context->hash_fn = MLX4_RSS_HASH_XOR; 1213 } else if (priv->rss_hash_fn == ETH_RSS_HASH_TOP) { 1214 rss_context->hash_fn = MLX4_RSS_HASH_TOP; 1215 memcpy(rss_context->rss_key, priv->rss_key, 1216 MLX4_EN_RSS_KEY_SIZE); 1217 } else { 1218 en_err(priv, "Unknown RSS hash function requested\n"); 1219 err = -EINVAL; 1220 goto indir_err; 1221 } 1222 1223 err = mlx4_qp_to_ready(mdev->dev, &priv->res.mtt, &context, 1224 rss_map->indir_qp, &rss_map->indir_state); 1225 if (err) 1226 goto indir_err; 1227 1228 return 0; 1229 1230 indir_err: 1231 mlx4_qp_modify(mdev->dev, NULL, rss_map->indir_state, 1232 MLX4_QP_STATE_RST, NULL, 0, 0, rss_map->indir_qp); 1233 mlx4_qp_remove(mdev->dev, rss_map->indir_qp); 1234 mlx4_qp_free(mdev->dev, rss_map->indir_qp); 1235 kfree(rss_map->indir_qp); 1236 rss_map->indir_qp = NULL; 1237 rss_err: 1238 for (i = 0; i < good_qps; i++) { 1239 mlx4_qp_modify(mdev->dev, NULL, rss_map->state[i], 1240 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->qps[i]); 1241 mlx4_qp_remove(mdev->dev, &rss_map->qps[i]); 1242 mlx4_qp_free(mdev->dev, &rss_map->qps[i]); 1243 } 1244 mlx4_qp_release_range(mdev->dev, rss_map->base_qpn, priv->rx_ring_num); 1245 return err; 1246 } 1247 1248 void mlx4_en_release_rss_steer(struct mlx4_en_priv *priv) 1249 { 1250 struct mlx4_en_dev *mdev = priv->mdev; 1251 struct mlx4_en_rss_map *rss_map = &priv->rss_map; 1252 int i; 1253 1254 if (priv->rx_ring_num > 1) { 1255 mlx4_qp_modify(mdev->dev, NULL, rss_map->indir_state, 1256 MLX4_QP_STATE_RST, NULL, 0, 0, 1257 rss_map->indir_qp); 1258 mlx4_qp_remove(mdev->dev, rss_map->indir_qp); 1259 mlx4_qp_free(mdev->dev, rss_map->indir_qp); 1260 kfree(rss_map->indir_qp); 1261 rss_map->indir_qp = NULL; 1262 } 1263 1264 for (i = 0; i < priv->rx_ring_num; i++) { 1265 mlx4_qp_modify(mdev->dev, NULL, rss_map->state[i], 1266 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->qps[i]); 1267 mlx4_qp_remove(mdev->dev, &rss_map->qps[i]); 1268 mlx4_qp_free(mdev->dev, &rss_map->qps[i]); 1269 } 1270 mlx4_qp_release_range(mdev->dev, rss_map->base_qpn, priv->rx_ring_num); 1271 } 1272