-
Notifications
You must be signed in to change notification settings - Fork 151
libbpf: fix some incorrect @param descriptions in the comment of libbpf.h #10320
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: bpf-next_base
Are you sure you want to change the base?
Conversation
|
Upstream branch: 4722981 |
4a6b8b7 to
1efb39d
Compare
|
Upstream branch: 7dc211c |
82e4467 to
8cb2760
Compare
1efb39d to
5b97b4a
Compare
|
Upstream branch: ec12ab2 |
8cb2760 to
56efd2d
Compare
5b97b4a to
7b6b51d
Compare
|
Upstream branch: d6ec090 |
56efd2d to
8573508
Compare
7b6b51d to
2412df8
Compare
|
Upstream branch: d6ec090 |
8573508 to
451cd1d
Compare
2412df8 to
bfb0726
Compare
|
Upstream branch: d088da9 |
451cd1d to
f5cbf12
Compare
bfb0726 to
b0a5b86
Compare
|
Upstream branch: e0940c6 |
f5cbf12 to
83322d4
Compare
b0a5b86 to
44cbecf
Compare
|
Upstream branch: 792f258 |
83322d4 to
2661197
Compare
44cbecf to
e8ba78a
Compare
|
Upstream branch: 878ee3c |
2661197 to
1f9dcb4
Compare
e8ba78a to
c1a1f03
Compare
|
Upstream branch: ae24fc8 |
1f9dcb4 to
c2063bc
Compare
c1a1f03 to
ca453f8
Compare
|
Upstream branch: 4dd3a48 |
c2063bc to
6096bc8
Compare
ca453f8 to
b3f74e5
Compare
|
Upstream branch: 8f7cf30 |
6096bc8 to
8cfdb41
Compare
b3f74e5 to
b57110f
Compare
|
Upstream branch: c427320 |
…pf.h There are some incorrect @param descriptions in the comment of libbpf.h file. The following is a case: /** * @brief **bpf_link__unpin()** unpins the BPF link from a file * in the BPFFS specified by a path. This decrements the links * reference count. * * The file pinning the BPF link can also be unlinked by a different * process in which case this function will return an error. * * @param prog BPF program to unpin * @param path file path to the pin in a BPF file system * @return 0, on success; negative error code, otherwise */ LIBBPF_API int bpf_link__unpin(struct bpf_link *link); In the parameters of the bpf_link__unpin() function, there are no 'prog' and 'path' parameters. This patch fixes this kind of issues present in the comments of the libbpf.h file. Signed-off-by: Jianyun Gao <jianyungao89@gmail.com>
8cfdb41 to
1bf375f
Compare
Pull request for series with
subject: libbpf: fix some incorrect @param descriptions in the comment of libbpf.h
version: 1
url: https://patchwork.kernel.org/project/netdevbpf/list/?series=1024626