xdp_umem_props.h 256 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_PROPS_H_
  6. #define XDP_UMEM_PROPS_H_
  7. struct xdp_umem_props {
  8. u64 chunk_mask;
  9. u64 size;
  10. };
  11. #endif /* XDP_UMEM_PROPS_H_ */