Symbol: bpf_wq
drivers/hid/bpf/progs/hid_bpf_async.h
28
struct bpf_wq wq;
drivers/hid/bpf/progs/hid_bpf_helpers.h
34
extern int bpf_wq_init(struct bpf_wq *wq, void *p__map, unsigned int flags) __weak __ksym;
drivers/hid/bpf/progs/hid_bpf_helpers.h
35
extern int bpf_wq_start(struct bpf_wq *wq, unsigned int flags) __weak __ksym;
drivers/hid/bpf/progs/hid_bpf_helpers.h
36
extern int bpf_wq_set_callback(struct bpf_wq *wq,
include/linux/bpf.h
393
return sizeof(struct bpf_wq);
include/linux/bpf.h
427
return __alignof__(struct bpf_wq);
kernel/bpf/helpers.c
1210
BTF_TYPE_EMIT(struct bpf_wq);
kernel/bpf/helpers.c
3163
__bpf_kfunc int bpf_wq_init(struct bpf_wq *wq, void *p__map, unsigned int flags)
kernel/bpf/helpers.c
3168
BUILD_BUG_ON(sizeof(struct bpf_async_kern) > sizeof(struct bpf_wq));
kernel/bpf/helpers.c
3169
BUILD_BUG_ON(__alignof__(struct bpf_async_kern) != __alignof__(struct bpf_wq));
kernel/bpf/helpers.c
3177
__bpf_kfunc int bpf_wq_start(struct bpf_wq *wq, unsigned int flags)
kernel/bpf/helpers.c
3201
__bpf_kfunc int bpf_wq_set_callback(struct bpf_wq *wq,
kernel/bpf/verifier.c
12339
BTF_ID(struct, bpf_wq)
tools/testing/selftests/bpf/bpf_experimental.h
581
extern int bpf_wq_init(struct bpf_wq *wq, void *p__map, unsigned int flags) __weak __ksym;
tools/testing/selftests/bpf/bpf_experimental.h
582
extern int bpf_wq_start(struct bpf_wq *wq, unsigned int flags) __weak __ksym;
tools/testing/selftests/bpf/progs/verifier_async_cb_context.c
68
struct bpf_wq w;
tools/testing/selftests/bpf/progs/wq.c
16
struct bpf_wq work;
tools/testing/selftests/bpf/progs/wq.c
195
struct bpf_wq *wq;
tools/testing/selftests/bpf/progs/wq.c
36
struct bpf_wq w;
tools/testing/selftests/bpf/progs/wq.c
60
struct bpf_wq *wq;
tools/testing/selftests/bpf/progs/wq.c
93
struct bpf_wq *wq;
tools/testing/selftests/bpf/progs/wq_failures.c
105
struct bpf_wq *wq;
tools/testing/selftests/bpf/progs/wq_failures.c
13
struct bpf_wq w;
tools/testing/selftests/bpf/progs/wq_failures.c
131
struct bpf_wq *wq;
tools/testing/selftests/bpf/progs/wq_failures.c
154
struct bpf_wq *wq;
tools/testing/selftests/bpf/progs/wq_failures.c
54
struct bpf_wq *wq;
tools/testing/selftests/bpf/progs/wq_failures.c
79
struct bpf_wq *wq;
tools/testing/selftests/hid/progs/hid.c
448
struct bpf_wq work;
tools/testing/selftests/hid/progs/hid.c
477
struct bpf_wq *wq;
tools/testing/selftests/hid/progs/hid_bpf_helpers.h
129
extern int bpf_wq_init(struct bpf_wq *wq, void *p__map, unsigned int flags) __weak __ksym;
tools/testing/selftests/hid/progs/hid_bpf_helpers.h
130
extern int bpf_wq_start(struct bpf_wq *wq, unsigned int flags) __weak __ksym;
tools/testing/selftests/hid/progs/hid_bpf_helpers.h
131
extern int bpf_wq_set_callback(struct bpf_wq *wq,