projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fd0493a
)
libbpf: Remove unnecessary type cast
author
Yuntao Wang
<ytcoode@gmail.com>
Sun, 24 Apr 2022 14:34:20 +0000
(22:34 +0800)
committer
Daniel Borkmann
<daniel@iogearbox.net>
Mon, 25 Apr 2022 15:39:16 +0000
(17:39 +0200)
The link variable is already of type 'struct bpf_link *', casting it to
'struct bpf_link *' is redundant, drop it.
Signed-off-by: Yuntao Wang <ytcoode@gmail.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Link:
https://lore.kernel.org/bpf/20220424143420.457082-1-ytcoode@gmail.com
tools/lib/bpf/libbpf.c
patch
|
blob
|
history
diff --git
a/tools/lib/bpf/libbpf.c
b/tools/lib/bpf/libbpf.c
index 9a213aaaac8a266c9eb8f4d03c0770d36a90ef38..cc1a8fc47f72d0248a0360a0af8386135dc598b6 100644
(file)
--- a/
tools/lib/bpf/libbpf.c
+++ b/
tools/lib/bpf/libbpf.c
@@
-11270,7
+11270,7
@@
static struct bpf_link *bpf_program__attach_btf_id(const struct bpf_program *pro
return libbpf_err_ptr(pfd);
}
link->fd = pfd;
- return
(struct bpf_link *)
link;
+ return link;
}
struct bpf_link *bpf_program__attach_trace(const struct bpf_program *prog)