From: Yonghong Song Date: Fri, 11 Feb 2022 19:49:48 +0000 (-0800) Subject: bpf: Emit bpf_timer in vmlinux BTF X-Git-Tag: v6.6.17~8134^2~37^2~3^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3bd916ee0ecbbdd902fc24845f2fef332b2a310c;p=platform%2Fkernel%2Flinux-rpi.git bpf: Emit bpf_timer in vmlinux BTF Currently the following code in check_and_init_map_value() *(struct bpf_timer *)(dst + map->timer_off) = (struct bpf_timer){}; can help generate bpf_timer definition in vmlinuxBTF. But the code above may not zero the whole structure due to anonymour members and that code will be replaced by memset in the subsequent patch and bpf_timer definition will disappear from vmlinuxBTF. Let us emit the type explicitly so bpf program can continue to use it from vmlinux.h. Signed-off-by: Yonghong Song Signed-off-by: Alexei Starovoitov Link: https://lore.kernel.org/bpf/20220211194948.3141529-1-yhs@fb.com --- diff --git a/kernel/bpf/helpers.c b/kernel/bpf/helpers.c index 01cfdf4..55c0842 100644 --- a/kernel/bpf/helpers.c +++ b/kernel/bpf/helpers.c @@ -2,6 +2,7 @@ /* Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com */ #include +#include #include #include #include @@ -1075,6 +1076,7 @@ static enum hrtimer_restart bpf_timer_cb(struct hrtimer *hrtimer) void *key; u32 idx; + BTF_TYPE_EMIT(struct bpf_timer); callback_fn = rcu_dereference_check(t->callback_fn, rcu_read_lock_bh_held()); if (!callback_fn) goto out;