xdp_umem.h 377 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /* XDP user-space packet buffer
  3. * Copyright(c) 2018 Intel Corporation.
  4. */
  5. #ifndef XDP_UMEM_H_
  6. #define XDP_UMEM_H_
  7. #include <net/xdp_sock_drv.h>
  8. void xdp_get_umem(struct xdp_umem *umem);
  9. void xdp_put_umem(struct xdp_umem *umem, bool defer_cleanup);
  10. struct xdp_umem *xdp_umem_create(struct xdp_umem_reg *mr);
  11. #endif /* XDP_UMEM_H_ */