blob: 40eab10dfc49d40d6463b00fdd3785f376f9f519 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/* 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
9struct xdp_umem_props {
10 u64 chunk_mask;
11 u64 size;
12};
13
14#endif /* XDP_UMEM_PROPS_H_ */