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
drm/ssd130x: Set SPI .id_table to prevent an SPI core warning
[drm/drm-misc.git]
/
samples
/
bpf
/
xdp_sample_shared.h
blob
8a7669a5d5638c6bec306831dba8314f9cf43d3a
1
// SPDX-License-Identifier: GPL-2.0-only
2
#ifndef _XDP_SAMPLE_SHARED_H
3
#define _XDP_SAMPLE_SHARED_H
4
5
struct
datarec
{
6
size_t
processed
;
7
size_t
dropped
;
8
size_t
issue
;
9
union
{
10
size_t
xdp_pass
;
11
size_t
info
;
12
};
13
size_t
xdp_drop
;
14
size_t
xdp_redirect
;
15
}
__attribute__
((
aligned
(
64
)));
16
17
#endif