new file mode 100644
@@ -0,0 +1,37 @@
+/*
+ * QEMU Userspace eBPF Header
+ *
+ * Copyright(C) 2022 Intel Corporation.
+ *
+ * Author:
+ * Zhang Chen <chen.zhang@intel.com>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2 or later.
+ * See the COPYING file in the top-level directory.
+ *
+ */
+
+#ifndef QEMU_UBPF_H
+#define QEMU_UBPF_H
+
+#include <ubpf.h>
+#include <math.h>
+#include <elf.h>
+
+#define MAX_LEN (1024 * 1024)
+
+typedef struct UbpfState {
+ bool jit;
+ char *code_path;
+ void *code;
+ size_t code_len;
+ char *target_path;
+ void *target;
+ size_t target_len;
+ struct ubpf_vm *vm;
+ ubpf_jit_fn fn;
+ int type;
+ char *func;
+} UbpfState;
+
+#endif /* QEMU_UBPF_H */
Add ebpf/ubpf.h for the UbpfState. Signed-off-by: Zhang Chen <chen.zhang@intel.com> --- ebpf/ubpf.h | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 ebpf/ubpf.h