projects
/
releases.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
GNU Linux-libre 4.19.211-gnu1
[releases.git]
/
net
/
xdp
/
xdp_umem_props.h
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_ */