Merge tag 'powerpc-5.11-3' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc...
[linux/fpc-iii.git] / kernel / bpf / preload / bpf_preload.h
blob2f9932276f2eb4a000e48acdf6f12d194e36a821
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _BPF_PRELOAD_H
3 #define _BPF_PRELOAD_H
5 #include <linux/usermode_driver.h>
6 #include "iterators/bpf_preload_common.h"
8 struct bpf_preload_ops {
9 struct umd_info info;
10 int (*preload)(struct bpf_preload_info *);
11 int (*finish)(void);
12 struct module *owner;
14 extern struct bpf_preload_ops *bpf_preload_ops;
15 #define BPF_PRELOAD_LINKS 2
16 #endif