-
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 |
…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 <[email protected]>
f5cbf12 to
83322d4
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