diff options
author | Stanislav Fomichev <sdf@google.com> | 2023-06-26 14:25:22 -0700 |
---|---|---|
committer | Daniel Borkmann <daniel@iogearbox.net> | 2023-06-30 10:36:08 +0200 |
commit | 2597a25cb865b17c1c9c2a0dcf4925e9d1a696bb (patch) | |
tree | 7ac583572950b96fca9712885d731962403b4e2f /net/bpf | |
parent | 819d43428a8661abccf8b9ecad94c7e6f23a0024 (diff) | |
download | linux-2597a25cb865b17c1c9c2a0dcf4925e9d1a696bb.tar.gz linux-2597a25cb865b17c1c9c2a0dcf4925e9d1a696bb.tar.bz2 linux-2597a25cb865b17c1c9c2a0dcf4925e9d1a696bb.zip |
selftests/bpf: Add test to exercise typedef walking
Add new bpf_fentry_test_sinfo with skb_shared_info argument and try to
access frags.
Signed-off-by: Stanislav Fomichev <sdf@google.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Yonghong Song <yhs@fb.com>
Link: https://lore.kernel.org/bpf/20230626212522.2414485-2-sdf@google.com
Diffstat (limited to 'net/bpf')
-rw-r--r-- | net/bpf/test_run.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/bpf/test_run.c b/net/bpf/test_run.c index 2321bd2f9964..63b11f7a5392 100644 --- a/net/bpf/test_run.c +++ b/net/bpf/test_run.c @@ -555,6 +555,10 @@ __bpf_kfunc u32 bpf_fentry_test9(u32 *a) return *a; } +void noinline bpf_fentry_test_sinfo(struct skb_shared_info *sinfo) +{ +} + __bpf_kfunc int bpf_modify_return_test(int a, int *b) { *b += 1; |