hc
2023-12-06 08f87f769b595151be1afeff53e144f543faa614
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB */
/* Copyright (c) 2019 Mellanox Technologies. */
 
#ifndef __MLX5_EN_XSK_RX_H__
#define __MLX5_EN_XSK_RX_H__
 
#include "en.h"
#include <net/xdp_sock_drv.h>
 
/* RX data path */
 
struct sk_buff *mlx5e_xsk_skb_from_cqe_mpwrq_linear(struct mlx5e_rq *rq,
                           struct mlx5e_mpw_info *wi,
                           u16 cqe_bcnt,
                           u32 head_offset,
                           u32 page_idx);
struct sk_buff *mlx5e_xsk_skb_from_cqe_linear(struct mlx5e_rq *rq,
                         struct mlx5_cqe64 *cqe,
                         struct mlx5e_wqe_frag_info *wi,
                         u32 cqe_bcnt);
 
static inline int mlx5e_xsk_page_alloc_pool(struct mlx5e_rq *rq,
                       struct mlx5e_dma_info *dma_info)
{
   dma_info->xsk = xsk_buff_alloc(rq->xsk_pool);
   if (!dma_info->xsk)
       return -ENOMEM;
 
   /* Store the DMA address without headroom. In striding RQ case, we just
    * provide pages for UMR, and headroom is counted at the setup stage
    * when creating a WQE. In non-striding RQ case, headroom is accounted
    * in mlx5e_alloc_rx_wqe.
    */
   dma_info->addr = xsk_buff_xdp_get_frame_dma(dma_info->xsk);
 
   return 0;
}
 
static inline bool mlx5e_xsk_update_rx_wakeup(struct mlx5e_rq *rq, bool alloc_err)
{
   if (!xsk_uses_need_wakeup(rq->xsk_pool))
       return alloc_err;
 
   if (unlikely(alloc_err))
       xsk_set_rx_need_wakeup(rq->xsk_pool);
   else
       xsk_clear_rx_need_wakeup(rq->xsk_pool);
 
   return false;
}
 
#endif /* __MLX5_EN_XSK_RX_H__ */