Message ID | 20240903012839.3178-1-chenyuan_fl@163.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 02baa0a2a677cf543899bc3eb43ed92caf4aba7a |
Headers | show |
Series | [v2,1/1] selftests/bpf: Fix procmap_query()'s params mismatch and compilation warning | expand |
Hello: This patch was applied to bpf/bpf-next.git (master) by Alexei Starovoitov <ast@kernel.org>: On Tue, 3 Sep 2024 09:28:39 +0800 you wrote: > From: Yuan Chen <chenyuan@kylinos.cn> > > When the PROCMAP_QUERY is not defined, a compilation error occurs due to the > mismatch of the procmap_query()'s params, procmap_query() only be called in > the file where the function is defined, modify the params so they can match. > > We get a warning when build samples/bpf: > trace_helpers.c:252:5: warning: no previous prototype for ‘procmap_query’ [-Wmissing-prototypes] > 252 | int procmap_query(int fd, const void *addr, __u32 query_flags, size_t *start, size_t *offset, int *flags) > | ^~~~~~~~~~~~~ > As this function is only used in the file, mark it as 'static'. > > [...] Here is the summary with links: - [v2,1/1] selftests/bpf: Fix procmap_query()'s params mismatch and compilation warning https://git.kernel.org/bpf/bpf-next/c/02baa0a2a677 You are awesome, thank you!
diff --git a/tools/testing/selftests/bpf/trace_helpers.c b/tools/testing/selftests/bpf/trace_helpers.c index 1bfd881c0e07..2d742fdac6b9 100644 --- a/tools/testing/selftests/bpf/trace_helpers.c +++ b/tools/testing/selftests/bpf/trace_helpers.c @@ -249,7 +249,7 @@ int kallsyms_find(const char *sym, unsigned long long *addr) #ifdef PROCMAP_QUERY int env_verbosity __weak = 0; -int procmap_query(int fd, const void *addr, __u32 query_flags, size_t *start, size_t *offset, int *flags) +static int procmap_query(int fd, const void *addr, __u32 query_flags, size_t *start, size_t *offset, int *flags) { char path_buf[PATH_MAX], build_id_buf[20]; struct procmap_query q; @@ -293,7 +293,7 @@ int procmap_query(int fd, const void *addr, __u32 query_flags, size_t *start, si return 0; } #else -int procmap_query(int fd, const void *addr, size_t *start, size_t *offset, int *flags) +static int procmap_query(int fd, const void *addr, __u32 query_flags, size_t *start, size_t *offset, int *flags) { return -EOPNOTSUPP; }