1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* XDP user-space packet buffer
3  * Copyright(c) 2018 Intel Corporation.
4  */
5 
6 #ifndef XDP_UMEM_PROPS_H_
7 #define XDP_UMEM_PROPS_H_
8 
9 struct xdp_umem_props {
10 	u64 chunk_mask;
11 	u64 size;
12 };
13 
14 #endif /* XDP_UMEM_PROPS_H_ */
15