repo.or.cz
/
drm
/
drm-misc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git]
/
tools
/
testing
/
selftests
/
bpf
/
xdp_features.h
blob
2670c541713b603f7da88bb7880f42d738598f51
1
/* SPDX-License-Identifier: GPL-2.0 */
2
3
/* test commands */
4
enum
test_commands
{
5
CMD_STOP
,
/* CMD */
6
CMD_START
,
/* CMD */
7
CMD_ECHO
,
/* CMD */
8
CMD_ACK
,
/* CMD + data */
9
CMD_GET_XDP_CAP
,
/* CMD */
10
CMD_GET_STATS
,
/* CMD */
11
};
12
13
#define DUT_CTRL_PORT 12345
14
#define DUT_ECHO_PORT 12346
15
16
struct
tlv_hdr
{
17
__be16 type
;
18
__be16 len
;
19
__u8 data
[];
20
};