aboutsummaryrefslogtreecommitdiffstats
path: root/src/bpfswitch/include/xdp_fdb.h
diff options
context:
space:
mode:
authorSridhar K. N. Rao <srao@linuxfoundation.org>2022-12-16 17:24:48 +0530
committerSridhar K. N. Rao <srao@linuxfoundation.org>2022-12-19 21:14:08 +0530
commit3409364da8fa46eae8ca22a579e219dc74958079 (patch)
tree83cb1cc72c3c59465d7d3be0f793a896c0ad7a21 /src/bpfswitch/include/xdp_fdb.h
parent34147ac299351c44d4f7d135892457fba38a132b (diff)
ebpf: This patch adds ebpf-baremetal test support
Remove object files and binaries Suggestions in systems/Readme. Add license headers. Signed-off-by: Sridhar K. N. Rao <srao@linuxfoundation.org> Change-Id: I5fd481e3ed3eb51e6b8091cbf6d1ec8e3b00cbf0
Diffstat (limited to 'src/bpfswitch/include/xdp_fdb.h')
-rw-r--r--src/bpfswitch/include/xdp_fdb.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/bpfswitch/include/xdp_fdb.h b/src/bpfswitch/include/xdp_fdb.h
new file mode 100644
index 00000000..3e2e593a
--- /dev/null
+++ b/src/bpfswitch/include/xdp_fdb.h
@@ -0,0 +1,20 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+#ifndef _XDP_FDB_H_
+#define _XDP_FDB_H_
+
+#include <linux/if_ether.h>
+
+struct xdp_stats {
+ __u64 bytes_fwd;
+ __u64 pkts_fwd;
+ __u64 dropped;
+};
+
+struct fdb_key
+{
+ __u8 smac[ETH_ALEN];
+ __u8 dmac[ETH_ALEN];
+ //__u16 vlan;
+};
+
+#endif