2 * Copyright (c) 2015, Mellanox Technologies. All rights reserved.
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:
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
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.
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
33 #include <linux/prefetch.h>
35 #include <linux/ipv6.h>
36 #include <linux/tcp.h>
37 #include <net/ip6_checksum.h>
38 #include <net/page_pool.h>
39 #include <net/inet_ecn.h>
44 #include "ipoib/ipoib.h"
45 #include "en_accel/ipsec_rxtx.h"
46 #include "en_accel/tls_rxtx.h"
47 #include "lib/clock.h"
50 static inline bool mlx5e_rx_hw_stamp(struct hwtstamp_config *config)
52 return config->rx_filter == HWTSTAMP_FILTER_ALL;
55 static inline void mlx5e_read_cqe_slot(struct mlx5e_cq *cq, u32 cqcc,
58 u32 ci = mlx5_cqwq_ctr2ix(&cq->wq, cqcc);
60 memcpy(data, mlx5_cqwq_get_wqe(&cq->wq, ci), sizeof(struct mlx5_cqe64));
63 static inline void mlx5e_read_title_slot(struct mlx5e_rq *rq,
64 struct mlx5e_cq *cq, u32 cqcc)
66 mlx5e_read_cqe_slot(cq, cqcc, &cq->title);
67 cq->decmprs_left = be32_to_cpu(cq->title.byte_cnt);
68 cq->decmprs_wqe_counter = be16_to_cpu(cq->title.wqe_counter);
69 rq->stats->cqe_compress_blks++;
72 static inline void mlx5e_read_mini_arr_slot(struct mlx5e_cq *cq, u32 cqcc)
74 mlx5e_read_cqe_slot(cq, cqcc, cq->mini_arr);
78 static inline void mlx5e_cqes_update_owner(struct mlx5e_cq *cq, u32 cqcc, int n)
80 struct mlx5_cqwq *wq = &cq->wq;
82 u8 op_own = mlx5_cqwq_get_ctr_wrap_cnt(wq, cqcc) & 1;
83 u32 ci = mlx5_cqwq_ctr2ix(wq, cqcc);
84 u32 wq_sz = mlx5_cqwq_get_size(wq);
85 u32 ci_top = min_t(u32, wq_sz, ci + n);
87 for (; ci < ci_top; ci++, n--) {
88 struct mlx5_cqe64 *cqe = mlx5_cqwq_get_wqe(&cq->wq, ci);
93 if (unlikely(ci == wq_sz)) {
95 for (ci = 0; ci < n; ci++) {
96 struct mlx5_cqe64 *cqe = mlx5_cqwq_get_wqe(&cq->wq, ci);
103 static inline void mlx5e_decompress_cqe(struct mlx5e_rq *rq,
104 struct mlx5e_cq *cq, u32 cqcc)
106 cq->title.byte_cnt = cq->mini_arr[cq->mini_arr_idx].byte_cnt;
107 cq->title.check_sum = cq->mini_arr[cq->mini_arr_idx].checksum;
108 cq->title.op_own &= 0xf0;
109 cq->title.op_own |= 0x01 & (cqcc >> cq->wq.fbc.log_sz);
110 cq->title.wqe_counter = cpu_to_be16(cq->decmprs_wqe_counter);
112 if (rq->wq_type == MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ)
113 cq->decmprs_wqe_counter +=
114 mpwrq_get_cqe_consumed_strides(&cq->title);
116 cq->decmprs_wqe_counter =
117 mlx5_wq_cyc_ctr2ix(&rq->wqe.wq, cq->decmprs_wqe_counter + 1);
120 static inline void mlx5e_decompress_cqe_no_hash(struct mlx5e_rq *rq,
121 struct mlx5e_cq *cq, u32 cqcc)
123 mlx5e_decompress_cqe(rq, cq, cqcc);
124 cq->title.rss_hash_type = 0;
125 cq->title.rss_hash_result = 0;
128 static inline u32 mlx5e_decompress_cqes_cont(struct mlx5e_rq *rq,
130 int update_owner_only,
133 u32 cqcc = cq->wq.cc + update_owner_only;
137 cqe_count = min_t(u32, cq->decmprs_left, budget_rem);
139 for (i = update_owner_only; i < cqe_count;
140 i++, cq->mini_arr_idx++, cqcc++) {
141 if (cq->mini_arr_idx == MLX5_MINI_CQE_ARRAY_SIZE)
142 mlx5e_read_mini_arr_slot(cq, cqcc);
144 mlx5e_decompress_cqe_no_hash(rq, cq, cqcc);
145 rq->handle_rx_cqe(rq, &cq->title);
147 mlx5e_cqes_update_owner(cq, cq->wq.cc, cqcc - cq->wq.cc);
149 cq->decmprs_left -= cqe_count;
150 rq->stats->cqe_compress_pkts += cqe_count;
155 static inline u32 mlx5e_decompress_cqes_start(struct mlx5e_rq *rq,
159 mlx5e_read_title_slot(rq, cq, cq->wq.cc);
160 mlx5e_read_mini_arr_slot(cq, cq->wq.cc + 1);
161 mlx5e_decompress_cqe(rq, cq, cq->wq.cc);
162 rq->handle_rx_cqe(rq, &cq->title);
165 return mlx5e_decompress_cqes_cont(rq, cq, 1, budget_rem) - 1;
168 static inline bool mlx5e_page_is_reserved(struct page *page)
170 return page_is_pfmemalloc(page) || page_to_nid(page) != numa_mem_id();
173 static inline bool mlx5e_rx_cache_put(struct mlx5e_rq *rq,
174 struct mlx5e_dma_info *dma_info)
176 struct mlx5e_page_cache *cache = &rq->page_cache;
177 u32 tail_next = (cache->tail + 1) & (MLX5E_CACHE_SIZE - 1);
178 struct mlx5e_rq_stats *stats = rq->stats;
180 if (tail_next == cache->head) {
185 if (unlikely(mlx5e_page_is_reserved(dma_info->page))) {
186 stats->cache_waive++;
190 cache->page_cache[cache->tail] = *dma_info;
191 cache->tail = tail_next;
195 static inline bool mlx5e_rx_cache_get(struct mlx5e_rq *rq,
196 struct mlx5e_dma_info *dma_info)
198 struct mlx5e_page_cache *cache = &rq->page_cache;
199 struct mlx5e_rq_stats *stats = rq->stats;
201 if (unlikely(cache->head == cache->tail)) {
202 stats->cache_empty++;
206 if (page_ref_count(cache->page_cache[cache->head].page) != 1) {
211 *dma_info = cache->page_cache[cache->head];
212 cache->head = (cache->head + 1) & (MLX5E_CACHE_SIZE - 1);
213 stats->cache_reuse++;
215 dma_sync_single_for_device(rq->pdev, dma_info->addr,
221 static inline int mlx5e_page_alloc_mapped(struct mlx5e_rq *rq,
222 struct mlx5e_dma_info *dma_info)
224 if (mlx5e_rx_cache_get(rq, dma_info))
227 dma_info->page = page_pool_dev_alloc_pages(rq->page_pool);
228 if (unlikely(!dma_info->page))
231 dma_info->addr = dma_map_page(rq->pdev, dma_info->page, 0,
232 PAGE_SIZE, rq->buff.map_dir);
233 if (unlikely(dma_mapping_error(rq->pdev, dma_info->addr))) {
234 put_page(dma_info->page);
235 dma_info->page = NULL;
242 void mlx5e_page_dma_unmap(struct mlx5e_rq *rq, struct mlx5e_dma_info *dma_info)
244 dma_unmap_page(rq->pdev, dma_info->addr, PAGE_SIZE, rq->buff.map_dir);
247 void mlx5e_page_release(struct mlx5e_rq *rq, struct mlx5e_dma_info *dma_info,
250 if (likely(recycle)) {
251 if (mlx5e_rx_cache_put(rq, dma_info))
254 mlx5e_page_dma_unmap(rq, dma_info);
255 page_pool_recycle_direct(rq->page_pool, dma_info->page);
257 mlx5e_page_dma_unmap(rq, dma_info);
258 put_page(dma_info->page);
262 static inline int mlx5e_get_rx_frag(struct mlx5e_rq *rq,
263 struct mlx5e_wqe_frag_info *frag)
268 /* On first frag (offset == 0), replenish page (dma_info actually).
269 * Other frags that point to the same dma_info (with a different
270 * offset) should just use the new one without replenishing again
273 err = mlx5e_page_alloc_mapped(rq, frag->di);
278 static inline void mlx5e_put_rx_frag(struct mlx5e_rq *rq,
279 struct mlx5e_wqe_frag_info *frag,
282 if (frag->last_in_page)
283 mlx5e_page_release(rq, frag->di, recycle);
286 static inline struct mlx5e_wqe_frag_info *get_frag(struct mlx5e_rq *rq, u16 ix)
288 return &rq->wqe.frags[ix << rq->wqe.info.log_num_frags];
291 static int mlx5e_alloc_rx_wqe(struct mlx5e_rq *rq, struct mlx5e_rx_wqe_cyc *wqe,
294 struct mlx5e_wqe_frag_info *frag = get_frag(rq, ix);
298 for (i = 0; i < rq->wqe.info.num_frags; i++, frag++) {
299 err = mlx5e_get_rx_frag(rq, frag);
303 wqe->data[i].addr = cpu_to_be64(frag->di->addr +
304 frag->offset + rq->buff.headroom);
311 mlx5e_put_rx_frag(rq, --frag, true);
316 static inline void mlx5e_free_rx_wqe(struct mlx5e_rq *rq,
317 struct mlx5e_wqe_frag_info *wi,
322 for (i = 0; i < rq->wqe.info.num_frags; i++, wi++)
323 mlx5e_put_rx_frag(rq, wi, recycle);
326 void mlx5e_dealloc_rx_wqe(struct mlx5e_rq *rq, u16 ix)
328 struct mlx5e_wqe_frag_info *wi = get_frag(rq, ix);
330 mlx5e_free_rx_wqe(rq, wi, false);
333 static int mlx5e_alloc_rx_wqes(struct mlx5e_rq *rq, u16 ix, u8 wqe_bulk)
335 struct mlx5_wq_cyc *wq = &rq->wqe.wq;
339 for (i = 0; i < wqe_bulk; i++) {
340 struct mlx5e_rx_wqe_cyc *wqe = mlx5_wq_cyc_get_wqe(wq, ix + i);
342 err = mlx5e_alloc_rx_wqe(rq, wqe, ix + i);
351 mlx5e_dealloc_rx_wqe(rq, ix + i);
357 mlx5e_add_skb_frag(struct mlx5e_rq *rq, struct sk_buff *skb,
358 struct mlx5e_dma_info *di, u32 frag_offset, u32 len,
359 unsigned int truesize)
361 dma_sync_single_for_cpu(rq->pdev,
362 di->addr + frag_offset,
363 len, DMA_FROM_DEVICE);
364 page_ref_inc(di->page);
365 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags,
366 di->page, frag_offset, len, truesize);
370 mlx5e_copy_skb_header(struct device *pdev, struct sk_buff *skb,
371 struct mlx5e_dma_info *dma_info,
372 int offset_from, int offset_to, u32 headlen)
374 const void *from = page_address(dma_info->page) + offset_from;
375 /* Aligning len to sizeof(long) optimizes memcpy performance */
376 unsigned int len = ALIGN(headlen, sizeof(long));
378 dma_sync_single_for_cpu(pdev, dma_info->addr + offset_from, len,
380 skb_copy_to_linear_data_offset(skb, offset_to, from, len);
384 mlx5e_copy_skb_header_mpwqe(struct device *pdev,
386 struct mlx5e_dma_info *dma_info,
387 u32 offset, u32 headlen)
389 u16 headlen_pg = min_t(u32, headlen, PAGE_SIZE - offset);
391 mlx5e_copy_skb_header(pdev, skb, dma_info, offset, 0, headlen_pg);
393 if (unlikely(offset + headlen > PAGE_SIZE)) {
395 mlx5e_copy_skb_header(pdev, skb, dma_info, 0, headlen_pg,
396 headlen - headlen_pg);
401 mlx5e_free_rx_mpwqe(struct mlx5e_rq *rq, struct mlx5e_mpw_info *wi, bool recycle)
403 const bool no_xdp_xmit =
404 bitmap_empty(wi->xdp_xmit_bitmap, MLX5_MPWRQ_PAGES_PER_WQE);
405 struct mlx5e_dma_info *dma_info = wi->umr.dma_info;
408 for (i = 0; i < MLX5_MPWRQ_PAGES_PER_WQE; i++)
409 if (no_xdp_xmit || !test_bit(i, wi->xdp_xmit_bitmap))
410 mlx5e_page_release(rq, &dma_info[i], recycle);
413 static void mlx5e_post_rx_mpwqe(struct mlx5e_rq *rq)
415 struct mlx5_wq_ll *wq = &rq->mpwqe.wq;
416 struct mlx5e_rx_wqe_ll *wqe = mlx5_wq_ll_get_wqe(wq, wq->head);
418 rq->mpwqe.umr_in_progress = false;
420 mlx5_wq_ll_push(wq, be16_to_cpu(wqe->next.next_wqe_index));
422 /* ensure wqes are visible to device before updating doorbell record */
425 mlx5_wq_ll_update_db_record(wq);
428 static inline u16 mlx5e_icosq_wrap_cnt(struct mlx5e_icosq *sq)
430 return sq->pc >> MLX5E_PARAMS_MINIMUM_LOG_SQ_SIZE;
433 static inline void mlx5e_fill_icosq_frag_edge(struct mlx5e_icosq *sq,
434 struct mlx5_wq_cyc *wq,
437 struct mlx5e_sq_wqe_info *edge_wi, *wi = &sq->db.ico_wqe[pi];
439 edge_wi = wi + nnops;
441 /* fill sq frag edge with nops to avoid wqe wrapping two pages */
442 for (; wi < edge_wi; wi++) {
443 wi->opcode = MLX5_OPCODE_NOP;
444 mlx5e_post_nop(wq, sq->sqn, &sq->pc);
448 static int mlx5e_alloc_rx_mpwqe(struct mlx5e_rq *rq, u16 ix)
450 struct mlx5e_mpw_info *wi = &rq->mpwqe.info[ix];
451 struct mlx5e_dma_info *dma_info = &wi->umr.dma_info[0];
452 struct mlx5e_icosq *sq = &rq->channel->icosq;
453 struct mlx5_wq_cyc *wq = &sq->wq;
454 struct mlx5e_umr_wqe *umr_wqe;
455 u16 xlt_offset = ix << (MLX5E_LOG_ALIGNED_MPWQE_PPW - 1);
456 u16 pi, contig_wqebbs_room;
460 pi = mlx5_wq_cyc_ctr2ix(wq, sq->pc);
461 contig_wqebbs_room = mlx5_wq_cyc_get_contig_wqebbs(wq, pi);
462 if (unlikely(contig_wqebbs_room < MLX5E_UMR_WQEBBS)) {
463 mlx5e_fill_icosq_frag_edge(sq, wq, pi, contig_wqebbs_room);
464 pi = mlx5_wq_cyc_ctr2ix(wq, sq->pc);
467 umr_wqe = mlx5_wq_cyc_get_wqe(wq, pi);
468 if (unlikely(mlx5e_icosq_wrap_cnt(sq) < 2))
469 memcpy(umr_wqe, &rq->mpwqe.umr_wqe,
470 offsetof(struct mlx5e_umr_wqe, inline_mtts));
472 for (i = 0; i < MLX5_MPWRQ_PAGES_PER_WQE; i++, dma_info++) {
473 err = mlx5e_page_alloc_mapped(rq, dma_info);
476 umr_wqe->inline_mtts[i].ptag = cpu_to_be64(dma_info->addr | MLX5_EN_WR);
479 bitmap_zero(wi->xdp_xmit_bitmap, MLX5_MPWRQ_PAGES_PER_WQE);
480 wi->consumed_strides = 0;
482 rq->mpwqe.umr_in_progress = true;
484 umr_wqe->ctrl.opmod_idx_opcode =
485 cpu_to_be32((sq->pc << MLX5_WQE_CTRL_WQE_INDEX_SHIFT) |
487 umr_wqe->uctrl.xlt_offset = cpu_to_be16(xlt_offset);
489 sq->db.ico_wqe[pi].opcode = MLX5_OPCODE_UMR;
490 sq->pc += MLX5E_UMR_WQEBBS;
491 mlx5e_notify_hw(wq, sq->pc, sq->uar_map, &umr_wqe->ctrl);
498 mlx5e_page_release(rq, dma_info, true);
500 rq->stats->buff_alloc_err++;
505 void mlx5e_dealloc_rx_mpwqe(struct mlx5e_rq *rq, u16 ix)
507 struct mlx5e_mpw_info *wi = &rq->mpwqe.info[ix];
508 /* Don't recycle, this function is called on rq/netdev close */
509 mlx5e_free_rx_mpwqe(rq, wi, false);
512 bool mlx5e_post_rx_wqes(struct mlx5e_rq *rq)
514 struct mlx5_wq_cyc *wq = &rq->wqe.wq;
518 if (unlikely(!test_bit(MLX5E_RQ_STATE_ENABLED, &rq->state)))
521 wqe_bulk = rq->wqe.info.wqe_bulk;
523 if (mlx5_wq_cyc_missing(wq) < wqe_bulk)
527 u16 head = mlx5_wq_cyc_get_head(wq);
529 err = mlx5e_alloc_rx_wqes(rq, head, wqe_bulk);
531 rq->stats->buff_alloc_err++;
535 mlx5_wq_cyc_push_n(wq, wqe_bulk);
536 } while (mlx5_wq_cyc_missing(wq) >= wqe_bulk);
538 /* ensure wqes are visible to device before updating doorbell record */
541 mlx5_wq_cyc_update_db_record(wq);
546 static inline void mlx5e_poll_ico_single_cqe(struct mlx5e_cq *cq,
547 struct mlx5e_icosq *sq,
549 struct mlx5_cqe64 *cqe)
551 struct mlx5_wq_cyc *wq = &sq->wq;
552 u16 ci = mlx5_wq_cyc_ctr2ix(wq, be16_to_cpu(cqe->wqe_counter));
553 struct mlx5e_sq_wqe_info *icowi = &sq->db.ico_wqe[ci];
555 mlx5_cqwq_pop(&cq->wq);
557 if (unlikely((cqe->op_own >> 4) != MLX5_CQE_REQ)) {
558 netdev_WARN_ONCE(cq->channel->netdev,
559 "Bad OP in ICOSQ CQE: 0x%x\n", cqe->op_own);
563 if (likely(icowi->opcode == MLX5_OPCODE_UMR)) {
564 mlx5e_post_rx_mpwqe(rq);
568 if (unlikely(icowi->opcode != MLX5_OPCODE_NOP))
569 netdev_WARN_ONCE(cq->channel->netdev,
570 "Bad OPCODE in ICOSQ WQE info: 0x%x\n", icowi->opcode);
573 static void mlx5e_poll_ico_cq(struct mlx5e_cq *cq, struct mlx5e_rq *rq)
575 struct mlx5e_icosq *sq = container_of(cq, struct mlx5e_icosq, cq);
576 struct mlx5_cqe64 *cqe;
578 if (unlikely(!test_bit(MLX5E_SQ_STATE_ENABLED, &sq->state)))
581 cqe = mlx5_cqwq_get_cqe(&cq->wq);
585 /* by design, there's only a single cqe */
586 mlx5e_poll_ico_single_cqe(cq, sq, rq, cqe);
588 mlx5_cqwq_update_db_record(&cq->wq);
591 bool mlx5e_post_rx_mpwqes(struct mlx5e_rq *rq)
593 struct mlx5_wq_ll *wq = &rq->mpwqe.wq;
595 if (unlikely(!test_bit(MLX5E_RQ_STATE_ENABLED, &rq->state)))
598 mlx5e_poll_ico_cq(&rq->channel->icosq.cq, rq);
600 if (mlx5_wq_ll_is_full(wq))
603 if (!rq->mpwqe.umr_in_progress)
604 mlx5e_alloc_rx_mpwqe(rq, wq->head);
606 rq->stats->congst_umr += mlx5_wq_ll_missing(wq) > 2;
611 static void mlx5e_lro_update_tcp_hdr(struct mlx5_cqe64 *cqe, struct tcphdr *tcp)
613 u8 l4_hdr_type = get_cqe_l4_hdr_type(cqe);
614 u8 tcp_ack = (l4_hdr_type == CQE_L4_HDR_TYPE_TCP_ACK_NO_DATA) ||
615 (l4_hdr_type == CQE_L4_HDR_TYPE_TCP_ACK_AND_DATA);
618 tcp->psh = get_cqe_lro_tcppsh(cqe);
622 tcp->ack_seq = cqe->lro_ack_seq_num;
623 tcp->window = cqe->lro_tcp_win;
627 static void mlx5e_lro_update_hdr(struct sk_buff *skb, struct mlx5_cqe64 *cqe,
630 struct ethhdr *eth = (struct ethhdr *)(skb->data);
632 int network_depth = 0;
638 proto = __vlan_get_protocol(skb, eth->h_proto, &network_depth);
640 tot_len = cqe_bcnt - network_depth;
641 ip_p = skb->data + network_depth;
643 if (proto == htons(ETH_P_IP)) {
644 struct iphdr *ipv4 = ip_p;
646 tcp = ip_p + sizeof(struct iphdr);
647 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
649 ipv4->ttl = cqe->lro_min_ttl;
650 ipv4->tot_len = cpu_to_be16(tot_len);
652 ipv4->check = ip_fast_csum((unsigned char *)ipv4,
655 mlx5e_lro_update_tcp_hdr(cqe, tcp);
656 check = csum_partial(tcp, tcp->doff * 4,
657 csum_unfold((__force __sum16)cqe->check_sum));
658 /* Almost done, don't forget the pseudo header */
659 tcp->check = csum_tcpudp_magic(ipv4->saddr, ipv4->daddr,
660 tot_len - sizeof(struct iphdr),
663 u16 payload_len = tot_len - sizeof(struct ipv6hdr);
664 struct ipv6hdr *ipv6 = ip_p;
666 tcp = ip_p + sizeof(struct ipv6hdr);
667 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
669 ipv6->hop_limit = cqe->lro_min_ttl;
670 ipv6->payload_len = cpu_to_be16(payload_len);
672 mlx5e_lro_update_tcp_hdr(cqe, tcp);
673 check = csum_partial(tcp, tcp->doff * 4,
674 csum_unfold((__force __sum16)cqe->check_sum));
675 /* Almost done, don't forget the pseudo header */
676 tcp->check = csum_ipv6_magic(&ipv6->saddr, &ipv6->daddr, payload_len,
681 static inline void mlx5e_skb_set_hash(struct mlx5_cqe64 *cqe,
684 u8 cht = cqe->rss_hash_type;
685 int ht = (cht & CQE_RSS_HTYPE_L4) ? PKT_HASH_TYPE_L4 :
686 (cht & CQE_RSS_HTYPE_IP) ? PKT_HASH_TYPE_L3 :
688 skb_set_hash(skb, be32_to_cpu(cqe->rss_hash_result), ht);
691 static inline bool is_last_ethertype_ip(struct sk_buff *skb, int *network_depth,
694 *proto = ((struct ethhdr *)skb->data)->h_proto;
695 *proto = __vlan_get_protocol(skb, *proto, network_depth);
696 return (*proto == htons(ETH_P_IP) || *proto == htons(ETH_P_IPV6));
699 static inline void mlx5e_enable_ecn(struct mlx5e_rq *rq, struct sk_buff *skb)
701 int network_depth = 0;
706 if (unlikely(!is_last_ethertype_ip(skb, &network_depth, &proto)))
709 ip = skb->data + network_depth;
710 rc = ((proto == htons(ETH_P_IP)) ? IP_ECN_set_ce((struct iphdr *)ip) :
711 IP6_ECN_set_ce(skb, (struct ipv6hdr *)ip));
713 rq->stats->ecn_mark += !!rc;
716 static __be32 mlx5e_get_fcs(struct sk_buff *skb)
718 int last_frag_sz, bytes_in_prev, nr_frags;
720 skb_frag_t *last_frag;
723 if (!skb_is_nonlinear(skb))
724 return *(__be32 *)(skb->data + skb->len - ETH_FCS_LEN);
726 nr_frags = skb_shinfo(skb)->nr_frags;
727 last_frag = &skb_shinfo(skb)->frags[nr_frags - 1];
728 last_frag_sz = skb_frag_size(last_frag);
730 /* If all FCS data is in last frag */
731 if (last_frag_sz >= ETH_FCS_LEN)
732 return *(__be32 *)(skb_frag_address(last_frag) +
733 last_frag_sz - ETH_FCS_LEN);
735 fcs_p2 = (u8 *)skb_frag_address(last_frag);
736 bytes_in_prev = ETH_FCS_LEN - last_frag_sz;
738 /* Find where the other part of the FCS is - Linear or another frag */
740 fcs_p1 = skb_tail_pointer(skb);
742 skb_frag_t *prev_frag = &skb_shinfo(skb)->frags[nr_frags - 2];
744 fcs_p1 = skb_frag_address(prev_frag) +
745 skb_frag_size(prev_frag);
747 fcs_p1 -= bytes_in_prev;
749 memcpy(&fcs_bytes, fcs_p1, bytes_in_prev);
750 memcpy(((u8 *)&fcs_bytes) + bytes_in_prev, fcs_p2, last_frag_sz);
755 static u8 get_ip_proto(struct sk_buff *skb, __be16 proto)
757 void *ip_p = skb->data + sizeof(struct ethhdr);
759 return (proto == htons(ETH_P_IP)) ? ((struct iphdr *)ip_p)->protocol :
760 ((struct ipv6hdr *)ip_p)->nexthdr;
763 static inline void mlx5e_handle_csum(struct net_device *netdev,
764 struct mlx5_cqe64 *cqe,
769 struct mlx5e_rq_stats *stats = rq->stats;
770 int network_depth = 0;
773 if (unlikely(!(netdev->features & NETIF_F_RXCSUM)))
777 skb->ip_summed = CHECKSUM_UNNECESSARY;
778 stats->csum_unnecessary++;
782 if (unlikely(test_bit(MLX5E_RQ_STATE_NO_CSUM_COMPLETE, &rq->state)))
783 goto csum_unnecessary;
785 if (likely(is_last_ethertype_ip(skb, &network_depth, &proto))) {
786 if (unlikely(get_ip_proto(skb, proto) == IPPROTO_SCTP))
787 goto csum_unnecessary;
789 skb->ip_summed = CHECKSUM_COMPLETE;
790 skb->csum = csum_unfold((__force __sum16)cqe->check_sum);
791 if (network_depth > ETH_HLEN)
792 /* CQE csum is calculated from the IP header and does
793 * not cover VLAN headers (if present). This will add
794 * the checksum manually.
796 skb->csum = csum_partial(skb->data + ETH_HLEN,
797 network_depth - ETH_HLEN,
799 if (unlikely(netdev->features & NETIF_F_RXFCS))
800 skb->csum = csum_add(skb->csum,
801 (__force __wsum)mlx5e_get_fcs(skb));
802 stats->csum_complete++;
807 if (likely((cqe->hds_ip_ext & CQE_L3_OK) &&
808 ((cqe->hds_ip_ext & CQE_L4_OK) ||
809 (get_cqe_l4_hdr_type(cqe) == CQE_L4_HDR_TYPE_NONE)))) {
810 skb->ip_summed = CHECKSUM_UNNECESSARY;
811 if (cqe_is_tunneled(cqe)) {
813 skb->encapsulation = 1;
814 stats->csum_unnecessary_inner++;
817 stats->csum_unnecessary++;
821 skb->ip_summed = CHECKSUM_NONE;
825 #define MLX5E_CE_BIT_MASK 0x80
827 static inline void mlx5e_build_rx_skb(struct mlx5_cqe64 *cqe,
832 u8 lro_num_seg = be32_to_cpu(cqe->srqn) >> 24;
833 struct mlx5e_rq_stats *stats = rq->stats;
834 struct net_device *netdev = rq->netdev;
836 skb->mac_len = ETH_HLEN;
838 #ifdef CONFIG_MLX5_EN_TLS
839 mlx5e_tls_handle_rx_skb(netdev, skb, &cqe_bcnt);
842 if (lro_num_seg > 1) {
843 mlx5e_lro_update_hdr(skb, cqe, cqe_bcnt);
844 skb_shinfo(skb)->gso_size = DIV_ROUND_UP(cqe_bcnt, lro_num_seg);
845 /* Subtract one since we already counted this as one
846 * "regular" packet in mlx5e_complete_rx_cqe()
848 stats->packets += lro_num_seg - 1;
849 stats->lro_packets++;
850 stats->lro_bytes += cqe_bcnt;
853 if (unlikely(mlx5e_rx_hw_stamp(rq->tstamp)))
854 skb_hwtstamps(skb)->hwtstamp =
855 mlx5_timecounter_cyc2time(rq->clock, get_cqe_ts(cqe));
857 skb_record_rx_queue(skb, rq->ix);
859 if (likely(netdev->features & NETIF_F_RXHASH))
860 mlx5e_skb_set_hash(cqe, skb);
862 if (cqe_has_vlan(cqe)) {
863 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
864 be16_to_cpu(cqe->vlan_info));
865 stats->removed_vlan_packets++;
868 skb->mark = be32_to_cpu(cqe->sop_drop_qpn) & MLX5E_TC_FLOW_ID_MASK;
870 mlx5e_handle_csum(netdev, cqe, rq, skb, !!lro_num_seg);
871 /* checking CE bit in cqe - MSB in ml_path field */
872 if (unlikely(cqe->ml_path & MLX5E_CE_BIT_MASK))
873 mlx5e_enable_ecn(rq, skb);
875 skb->protocol = eth_type_trans(skb, netdev);
878 static inline void mlx5e_complete_rx_cqe(struct mlx5e_rq *rq,
879 struct mlx5_cqe64 *cqe,
883 struct mlx5e_rq_stats *stats = rq->stats;
886 stats->bytes += cqe_bcnt;
887 mlx5e_build_rx_skb(cqe, cqe_bcnt, rq, skb);
891 struct sk_buff *mlx5e_build_linear_skb(struct mlx5e_rq *rq, void *va,
892 u32 frag_size, u16 headroom,
895 struct sk_buff *skb = build_skb(va, frag_size);
897 if (unlikely(!skb)) {
898 rq->stats->buff_alloc_err++;
902 skb_reserve(skb, headroom);
903 skb_put(skb, cqe_bcnt);
909 mlx5e_skb_from_cqe_linear(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe,
910 struct mlx5e_wqe_frag_info *wi, u32 cqe_bcnt)
912 struct mlx5e_dma_info *di = wi->di;
913 u16 rx_headroom = rq->buff.headroom;
919 va = page_address(di->page) + wi->offset;
920 data = va + rx_headroom;
921 frag_size = MLX5_SKB_FRAG_SZ(rx_headroom + cqe_bcnt);
923 dma_sync_single_range_for_cpu(rq->pdev, di->addr, wi->offset,
924 frag_size, DMA_FROM_DEVICE);
925 prefetchw(va); /* xdp_frame data area */
928 if (unlikely((cqe->op_own >> 4) != MLX5_CQE_RESP_SEND)) {
929 rq->stats->wqe_err++;
934 consumed = mlx5e_xdp_handle(rq, di, va, &rx_headroom, &cqe_bcnt);
937 return NULL; /* page/packet was consumed by XDP */
939 skb = mlx5e_build_linear_skb(rq, va, frag_size, rx_headroom, cqe_bcnt);
943 /* queue up for recycling/reuse */
944 page_ref_inc(di->page);
950 mlx5e_skb_from_cqe_nonlinear(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe,
951 struct mlx5e_wqe_frag_info *wi, u32 cqe_bcnt)
953 struct mlx5e_rq_frag_info *frag_info = &rq->wqe.info.arr[0];
954 struct mlx5e_wqe_frag_info *head_wi = wi;
955 u16 headlen = min_t(u32, MLX5E_RX_MAX_HEAD, cqe_bcnt);
956 u16 frag_headlen = headlen;
957 u16 byte_cnt = cqe_bcnt - headlen;
960 if (unlikely((cqe->op_own >> 4) != MLX5_CQE_RESP_SEND)) {
961 rq->stats->wqe_err++;
965 /* XDP is not supported in this configuration, as incoming packets
966 * might spread among multiple pages.
968 skb = napi_alloc_skb(rq->cq.napi,
969 ALIGN(MLX5E_RX_MAX_HEAD, sizeof(long)));
970 if (unlikely(!skb)) {
971 rq->stats->buff_alloc_err++;
975 prefetchw(skb->data);
978 u16 frag_consumed_bytes =
979 min_t(u16, frag_info->frag_size - frag_headlen, byte_cnt);
981 mlx5e_add_skb_frag(rq, skb, wi->di, wi->offset + frag_headlen,
982 frag_consumed_bytes, frag_info->frag_stride);
983 byte_cnt -= frag_consumed_bytes;
990 mlx5e_copy_skb_header(rq->pdev, skb, head_wi->di, head_wi->offset,
992 /* skb linear part was allocated with headlen and aligned to long */
993 skb->tail += headlen;
999 void mlx5e_handle_rx_cqe(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe)
1001 struct mlx5_wq_cyc *wq = &rq->wqe.wq;
1002 struct mlx5e_wqe_frag_info *wi;
1003 struct sk_buff *skb;
1007 ci = mlx5_wq_cyc_ctr2ix(wq, be16_to_cpu(cqe->wqe_counter));
1008 wi = get_frag(rq, ci);
1009 cqe_bcnt = be32_to_cpu(cqe->byte_cnt);
1011 skb = rq->wqe.skb_from_cqe(rq, cqe, wi, cqe_bcnt);
1013 /* probably for XDP */
1014 if (__test_and_clear_bit(MLX5E_RQ_FLAG_XDP_XMIT, rq->flags)) {
1015 /* do not return page to cache,
1016 * it will be returned on XDP_TX completion.
1023 mlx5e_complete_rx_cqe(rq, cqe, cqe_bcnt, skb);
1024 napi_gro_receive(rq->cq.napi, skb);
1027 mlx5e_free_rx_wqe(rq, wi, true);
1029 mlx5_wq_cyc_pop(wq);
1032 #ifdef CONFIG_MLX5_ESWITCH
1033 void mlx5e_handle_rx_cqe_rep(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe)
1035 struct net_device *netdev = rq->netdev;
1036 struct mlx5e_priv *priv = netdev_priv(netdev);
1037 struct mlx5e_rep_priv *rpriv = priv->ppriv;
1038 struct mlx5_eswitch_rep *rep = rpriv->rep;
1039 struct mlx5_wq_cyc *wq = &rq->wqe.wq;
1040 struct mlx5e_wqe_frag_info *wi;
1041 struct sk_buff *skb;
1045 ci = mlx5_wq_cyc_ctr2ix(wq, be16_to_cpu(cqe->wqe_counter));
1046 wi = get_frag(rq, ci);
1047 cqe_bcnt = be32_to_cpu(cqe->byte_cnt);
1049 skb = rq->wqe.skb_from_cqe(rq, cqe, wi, cqe_bcnt);
1051 /* probably for XDP */
1052 if (__test_and_clear_bit(MLX5E_RQ_FLAG_XDP_XMIT, rq->flags)) {
1053 /* do not return page to cache,
1054 * it will be returned on XDP_TX completion.
1061 mlx5e_complete_rx_cqe(rq, cqe, cqe_bcnt, skb);
1063 if (rep->vlan && skb_vlan_tag_present(skb))
1066 napi_gro_receive(rq->cq.napi, skb);
1069 mlx5e_free_rx_wqe(rq, wi, true);
1071 mlx5_wq_cyc_pop(wq);
1076 mlx5e_skb_from_cqe_mpwrq_nonlinear(struct mlx5e_rq *rq, struct mlx5e_mpw_info *wi,
1077 u16 cqe_bcnt, u32 head_offset, u32 page_idx)
1079 u16 headlen = min_t(u16, MLX5E_RX_MAX_HEAD, cqe_bcnt);
1080 struct mlx5e_dma_info *di = &wi->umr.dma_info[page_idx];
1081 u32 frag_offset = head_offset + headlen;
1082 u32 byte_cnt = cqe_bcnt - headlen;
1083 struct mlx5e_dma_info *head_di = di;
1084 struct sk_buff *skb;
1086 skb = napi_alloc_skb(rq->cq.napi,
1087 ALIGN(MLX5E_RX_MAX_HEAD, sizeof(long)));
1088 if (unlikely(!skb)) {
1089 rq->stats->buff_alloc_err++;
1093 prefetchw(skb->data);
1095 if (unlikely(frag_offset >= PAGE_SIZE)) {
1097 frag_offset -= PAGE_SIZE;
1101 u32 pg_consumed_bytes =
1102 min_t(u32, PAGE_SIZE - frag_offset, byte_cnt);
1103 unsigned int truesize =
1104 ALIGN(pg_consumed_bytes, BIT(rq->mpwqe.log_stride_sz));
1106 mlx5e_add_skb_frag(rq, skb, di, frag_offset,
1107 pg_consumed_bytes, truesize);
1108 byte_cnt -= pg_consumed_bytes;
1113 mlx5e_copy_skb_header_mpwqe(rq->pdev, skb, head_di,
1114 head_offset, headlen);
1115 /* skb linear part was allocated with headlen and aligned to long */
1116 skb->tail += headlen;
1117 skb->len += headlen;
1123 mlx5e_skb_from_cqe_mpwrq_linear(struct mlx5e_rq *rq, struct mlx5e_mpw_info *wi,
1124 u16 cqe_bcnt, u32 head_offset, u32 page_idx)
1126 struct mlx5e_dma_info *di = &wi->umr.dma_info[page_idx];
1127 u16 rx_headroom = rq->buff.headroom;
1128 u32 cqe_bcnt32 = cqe_bcnt;
1129 struct sk_buff *skb;
1134 va = page_address(di->page) + head_offset;
1135 data = va + rx_headroom;
1136 frag_size = MLX5_SKB_FRAG_SZ(rx_headroom + cqe_bcnt32);
1138 dma_sync_single_range_for_cpu(rq->pdev, di->addr, head_offset,
1139 frag_size, DMA_FROM_DEVICE);
1140 prefetchw(va); /* xdp_frame data area */
1144 consumed = mlx5e_xdp_handle(rq, di, va, &rx_headroom, &cqe_bcnt32);
1147 if (__test_and_clear_bit(MLX5E_RQ_FLAG_XDP_XMIT, rq->flags))
1148 __set_bit(page_idx, wi->xdp_xmit_bitmap); /* non-atomic */
1149 return NULL; /* page/packet was consumed by XDP */
1152 skb = mlx5e_build_linear_skb(rq, va, frag_size, rx_headroom, cqe_bcnt32);
1156 /* queue up for recycling/reuse */
1157 page_ref_inc(di->page);
1162 void mlx5e_handle_rx_cqe_mpwrq(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe)
1164 u16 cstrides = mpwrq_get_cqe_consumed_strides(cqe);
1165 u16 wqe_id = be16_to_cpu(cqe->wqe_id);
1166 struct mlx5e_mpw_info *wi = &rq->mpwqe.info[wqe_id];
1167 u16 stride_ix = mpwrq_get_cqe_stride_index(cqe);
1168 u32 wqe_offset = stride_ix << rq->mpwqe.log_stride_sz;
1169 u32 head_offset = wqe_offset & (PAGE_SIZE - 1);
1170 u32 page_idx = wqe_offset >> PAGE_SHIFT;
1171 struct mlx5e_rx_wqe_ll *wqe;
1172 struct mlx5_wq_ll *wq;
1173 struct sk_buff *skb;
1176 wi->consumed_strides += cstrides;
1178 if (unlikely((cqe->op_own >> 4) != MLX5_CQE_RESP_SEND)) {
1179 rq->stats->wqe_err++;
1183 if (unlikely(mpwrq_is_filler_cqe(cqe))) {
1184 struct mlx5e_rq_stats *stats = rq->stats;
1186 stats->mpwqe_filler_cqes++;
1187 stats->mpwqe_filler_strides += cstrides;
1191 cqe_bcnt = mpwrq_get_cqe_byte_cnt(cqe);
1193 skb = rq->mpwqe.skb_from_cqe_mpwrq(rq, wi, cqe_bcnt, head_offset,
1198 mlx5e_complete_rx_cqe(rq, cqe, cqe_bcnt, skb);
1199 napi_gro_receive(rq->cq.napi, skb);
1202 if (likely(wi->consumed_strides < rq->mpwqe.num_strides))
1206 wqe = mlx5_wq_ll_get_wqe(wq, wqe_id);
1207 mlx5e_free_rx_mpwqe(rq, wi, true);
1208 mlx5_wq_ll_pop(wq, cqe->wqe_id, &wqe->next.next_wqe_index);
1211 int mlx5e_poll_rx_cq(struct mlx5e_cq *cq, int budget)
1213 struct mlx5e_rq *rq = container_of(cq, struct mlx5e_rq, cq);
1214 struct mlx5e_xdpsq *xdpsq;
1215 struct mlx5_cqe64 *cqe;
1218 if (unlikely(!test_bit(MLX5E_RQ_STATE_ENABLED, &rq->state)))
1221 if (cq->decmprs_left)
1222 work_done += mlx5e_decompress_cqes_cont(rq, cq, 0, budget);
1224 cqe = mlx5_cqwq_get_cqe(&cq->wq);
1231 if (mlx5_get_cqe_format(cqe) == MLX5_COMPRESSED) {
1233 mlx5e_decompress_cqes_start(rq, cq,
1234 budget - work_done);
1238 mlx5_cqwq_pop(&cq->wq);
1240 rq->handle_rx_cqe(rq, cqe);
1241 } while ((++work_done < budget) && (cqe = mlx5_cqwq_get_cqe(&cq->wq)));
1243 if (xdpsq->doorbell) {
1244 mlx5e_xmit_xdp_doorbell(xdpsq);
1245 xdpsq->doorbell = false;
1248 if (xdpsq->redirect_flush) {
1250 xdpsq->redirect_flush = false;
1253 mlx5_cqwq_update_db_record(&cq->wq);
1255 /* ensure cq space is freed before enabling more cqes */
1261 #ifdef CONFIG_MLX5_CORE_IPOIB
1263 #define MLX5_IB_GRH_DGID_OFFSET 24
1264 #define MLX5_GID_SIZE 16
1266 static inline void mlx5i_complete_rx_cqe(struct mlx5e_rq *rq,
1267 struct mlx5_cqe64 *cqe,
1269 struct sk_buff *skb)
1271 struct hwtstamp_config *tstamp;
1272 struct mlx5e_rq_stats *stats;
1273 struct net_device *netdev;
1274 struct mlx5e_priv *priv;
1275 char *pseudo_header;
1280 qpn = be32_to_cpu(cqe->sop_drop_qpn) & 0xffffff;
1281 netdev = mlx5i_pkey_get_netdev(rq->netdev, qpn);
1283 /* No mapping present, cannot process SKB. This might happen if a child
1284 * interface is going down while having unprocessed CQEs on parent RQ
1286 if (unlikely(!netdev)) {
1287 /* TODO: add drop counters support */
1289 pr_warn_once("Unable to map QPN %u to dev - dropping skb\n", qpn);
1293 priv = mlx5i_epriv(netdev);
1294 tstamp = &priv->tstamp;
1295 stats = &priv->channel_stats[rq->ix].rq;
1297 g = (be32_to_cpu(cqe->flags_rqpn) >> 28) & 3;
1298 dgid = skb->data + MLX5_IB_GRH_DGID_OFFSET;
1299 if ((!g) || dgid[0] != 0xff)
1300 skb->pkt_type = PACKET_HOST;
1301 else if (memcmp(dgid, netdev->broadcast + 4, MLX5_GID_SIZE) == 0)
1302 skb->pkt_type = PACKET_BROADCAST;
1304 skb->pkt_type = PACKET_MULTICAST;
1306 /* TODO: IB/ipoib: Allow mcast packets from other VFs
1307 * 68996a6e760e5c74654723eeb57bf65628ae87f4
1310 skb_pull(skb, MLX5_IB_GRH_BYTES);
1312 skb->protocol = *((__be16 *)(skb->data));
1314 skb->ip_summed = CHECKSUM_COMPLETE;
1315 skb->csum = csum_unfold((__force __sum16)cqe->check_sum);
1317 if (unlikely(mlx5e_rx_hw_stamp(tstamp)))
1318 skb_hwtstamps(skb)->hwtstamp =
1319 mlx5_timecounter_cyc2time(rq->clock, get_cqe_ts(cqe));
1321 skb_record_rx_queue(skb, rq->ix);
1323 if (likely(netdev->features & NETIF_F_RXHASH))
1324 mlx5e_skb_set_hash(cqe, skb);
1326 /* 20 bytes of ipoib header and 4 for encap existing */
1327 pseudo_header = skb_push(skb, MLX5_IPOIB_PSEUDO_LEN);
1328 memset(pseudo_header, 0, MLX5_IPOIB_PSEUDO_LEN);
1329 skb_reset_mac_header(skb);
1330 skb_pull(skb, MLX5_IPOIB_HARD_LEN);
1334 stats->csum_complete++;
1336 stats->bytes += cqe_bcnt;
1339 void mlx5i_handle_rx_cqe(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe)
1341 struct mlx5_wq_cyc *wq = &rq->wqe.wq;
1342 struct mlx5e_wqe_frag_info *wi;
1343 struct sk_buff *skb;
1347 ci = mlx5_wq_cyc_ctr2ix(wq, be16_to_cpu(cqe->wqe_counter));
1348 wi = get_frag(rq, ci);
1349 cqe_bcnt = be32_to_cpu(cqe->byte_cnt);
1351 skb = rq->wqe.skb_from_cqe(rq, cqe, wi, cqe_bcnt);
1355 mlx5i_complete_rx_cqe(rq, cqe, cqe_bcnt, skb);
1356 if (unlikely(!skb->dev)) {
1357 dev_kfree_skb_any(skb);
1360 napi_gro_receive(rq->cq.napi, skb);
1363 mlx5e_free_rx_wqe(rq, wi, true);
1364 mlx5_wq_cyc_pop(wq);
1367 #endif /* CONFIG_MLX5_CORE_IPOIB */
1369 #ifdef CONFIG_MLX5_EN_IPSEC
1371 void mlx5e_ipsec_handle_rx_cqe(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe)
1373 struct mlx5_wq_cyc *wq = &rq->wqe.wq;
1374 struct mlx5e_wqe_frag_info *wi;
1375 struct sk_buff *skb;
1379 ci = mlx5_wq_cyc_ctr2ix(wq, be16_to_cpu(cqe->wqe_counter));
1380 wi = get_frag(rq, ci);
1381 cqe_bcnt = be32_to_cpu(cqe->byte_cnt);
1383 skb = rq->wqe.skb_from_cqe(rq, cqe, wi, cqe_bcnt);
1384 if (unlikely(!skb)) {
1385 /* a DROP, save the page-reuse checks */
1386 mlx5e_free_rx_wqe(rq, wi, true);
1389 skb = mlx5e_ipsec_handle_rx_skb(rq->netdev, skb, &cqe_bcnt);
1390 if (unlikely(!skb)) {
1391 mlx5e_free_rx_wqe(rq, wi, true);
1395 mlx5e_complete_rx_cqe(rq, cqe, cqe_bcnt, skb);
1396 napi_gro_receive(rq->cq.napi, skb);
1398 mlx5e_free_rx_wqe(rq, wi, true);
1400 mlx5_wq_cyc_pop(wq);
1403 #endif /* CONFIG_MLX5_EN_IPSEC */