kernel
This commit is contained in:
parent
b59f84ee36
commit
cfab1d3ce7
83468 changed files with 37938688 additions and 0 deletions
linux-6.8.1/samples/bpf
17
linux-6.8.1/samples/bpf/xdp_sample_shared.h
Normal file
17
linux-6.8.1/samples/bpf/xdp_sample_shared.h
Normal file
|
@ -0,0 +1,17 @@
|
|||
// SPDX-License-Identifier: GPL-2.0-only
|
||||
#ifndef _XDP_SAMPLE_SHARED_H
|
||||
#define _XDP_SAMPLE_SHARED_H
|
||||
|
||||
struct datarec {
|
||||
size_t processed;
|
||||
size_t dropped;
|
||||
size_t issue;
|
||||
union {
|
||||
size_t xdp_pass;
|
||||
size_t info;
|
||||
};
|
||||
size_t xdp_drop;
|
||||
size_t xdp_redirect;
|
||||
} __attribute__((aligned(64)));
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue