diff options
author | Stanislav Fomichev <sdf@google.com> | 2019-06-27 23:38:52 +0300 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2019-06-28 01:25:17 +0300 |
commit | 8a027dc0d8f5d421eba953a7116aea991459b202 (patch) | |
tree | c307bccb558de0b14e3ce10a0150d24f252b8f45 /tools/testing/selftests/bpf/.gitignore | |
parent | 9ec8a4c9489dc6fac324f8adb76fc182be119389 (diff) | |
download | linux-8a027dc0d8f5d421eba953a7116aea991459b202.tar.xz |
selftests/bpf: add sockopt test that exercises sk helpers
socktop test that introduces new SOL_CUSTOM sockopt level and
stores whatever users sets in sk storage. Whenever getsockopt
is called, the original value is retrieved.
v9:
* SO_SNDBUF example to override user-supplied buffer
v7:
* use retval=0 and optlen-1
v6:
* test 'ret=1' use-case as well (Alexei Starovoitov)
v4:
* don't call bpf_sk_fullsock helper
v3:
* drop (__u8 *)(long) casts for optval{,_end}
v2:
* new test
Cc: Andrii Nakryiko <andriin@fb.com>
Cc: Martin Lau <kafai@fb.com>
Signed-off-by: Stanislav Fomichev <sdf@google.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'tools/testing/selftests/bpf/.gitignore')
-rw-r--r-- | tools/testing/selftests/bpf/.gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/testing/selftests/bpf/.gitignore b/tools/testing/selftests/bpf/.gitignore index 3fe92601223d..8ac076c311d4 100644 --- a/tools/testing/selftests/bpf/.gitignore +++ b/tools/testing/selftests/bpf/.gitignore @@ -40,3 +40,4 @@ test_hashmap test_btf_dump xdping test_sockopt +test_sockopt_sk |