* [PATCH v2] perf lock contention: Change stack_id type to s32
@ 2024-08-12 17:25 Namhyung Kim
2024-08-12 17:33 ` Arnaldo Carvalho de Melo
0 siblings, 1 reply; 2+ messages in thread
From: Namhyung Kim @ 2024-08-12 17:25 UTC (permalink / raw)
To: Arnaldo Carvalho de Melo, Ian Rogers, Kan Liang
Cc: Jiri Olsa, Adrian Hunter, Peter Zijlstra, Ingo Molnar, LKML,
linux-perf-users, Dan Carpenter
The bpf_get_stackid() helper returns a signed type to check whether it
failed to get a stacktrace or not. But it saved the result in u32 and
checked if the value is negative.
376 if (needs_callstack) {
377 pelem->stack_id = bpf_get_stackid(ctx, &stacks,
378 BPF_F_FAST_STACK_CMP | stack_skip);
--> 379 if (pelem->stack_id < 0)
./tools/perf/util/bpf_skel/lock_contention.bpf.c:379 contention_begin()
warn: unsigned 'pelem->stack_id' is never less than zero.
Let's change the type to s32 instead.
Fixes: 6d499a6b3d90 ("perf lock: Print the number of lost entries for BPF")
Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
---
v2) fix build error for s32
tools/perf/util/bpf_skel/lock_data.h | 4 ++--
tools/perf/util/bpf_skel/vmlinux/vmlinux.h | 1 +
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/tools/perf/util/bpf_skel/lock_data.h b/tools/perf/util/bpf_skel/lock_data.h
index 36af11faad03..de12892f992f 100644
--- a/tools/perf/util/bpf_skel/lock_data.h
+++ b/tools/perf/util/bpf_skel/lock_data.h
@@ -7,11 +7,11 @@ struct tstamp_data {
u64 timestamp;
u64 lock;
u32 flags;
- u32 stack_id;
+ s32 stack_id;
};
struct contention_key {
- u32 stack_id;
+ s32 stack_id;
u32 pid;
u64 lock_addr_or_cgroup;
};
diff --git a/tools/perf/util/bpf_skel/vmlinux/vmlinux.h b/tools/perf/util/bpf_skel/vmlinux/vmlinux.h
index e9028235d771..d818e30c5457 100644
--- a/tools/perf/util/bpf_skel/vmlinux/vmlinux.h
+++ b/tools/perf/util/bpf_skel/vmlinux/vmlinux.h
@@ -15,6 +15,7 @@
typedef __u8 u8;
typedef __u32 u32;
+typedef __s32 s32;
typedef __u64 u64;
typedef __s64 s64;
--
2.46.0.76.ge559c4bf1a-goog
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH v2] perf lock contention: Change stack_id type to s32
2024-08-12 17:25 [PATCH v2] perf lock contention: Change stack_id type to s32 Namhyung Kim
@ 2024-08-12 17:33 ` Arnaldo Carvalho de Melo
0 siblings, 0 replies; 2+ messages in thread
From: Arnaldo Carvalho de Melo @ 2024-08-12 17:33 UTC (permalink / raw)
To: Namhyung Kim
Cc: Ian Rogers, Kan Liang, Jiri Olsa, Adrian Hunter, Peter Zijlstra,
Ingo Molnar, LKML, linux-perf-users, Dan Carpenter
On Mon, Aug 12, 2024 at 10:25:33AM -0700, Namhyung Kim wrote:
> The bpf_get_stackid() helper returns a signed type to check whether it
> failed to get a stacktrace or not. But it saved the result in u32 and
> checked if the value is negative.
>
> 376 if (needs_callstack) {
> 377 pelem->stack_id = bpf_get_stackid(ctx, &stacks,
> 378 BPF_F_FAST_STACK_CMP | stack_skip);
> --> 379 if (pelem->stack_id < 0)
>
> ./tools/perf/util/bpf_skel/lock_contention.bpf.c:379 contention_begin()
> warn: unsigned 'pelem->stack_id' is never less than zero.
>
> Let's change the type to s32 instead.
>
> Fixes: 6d499a6b3d90 ("perf lock: Print the number of lost entries for BPF")
> Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
> Signed-off-by: Namhyung Kim <namhyung@kernel.org>
> ---
> v2) fix build error for s32
Thanks, applied to perf-tools-next,
- Arnaldo
> tools/perf/util/bpf_skel/lock_data.h | 4 ++--
> tools/perf/util/bpf_skel/vmlinux/vmlinux.h | 1 +
> 2 files changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/tools/perf/util/bpf_skel/lock_data.h b/tools/perf/util/bpf_skel/lock_data.h
> index 36af11faad03..de12892f992f 100644
> --- a/tools/perf/util/bpf_skel/lock_data.h
> +++ b/tools/perf/util/bpf_skel/lock_data.h
> @@ -7,11 +7,11 @@ struct tstamp_data {
> u64 timestamp;
> u64 lock;
> u32 flags;
> - u32 stack_id;
> + s32 stack_id;
> };
>
> struct contention_key {
> - u32 stack_id;
> + s32 stack_id;
> u32 pid;
> u64 lock_addr_or_cgroup;
> };
> diff --git a/tools/perf/util/bpf_skel/vmlinux/vmlinux.h b/tools/perf/util/bpf_skel/vmlinux/vmlinux.h
> index e9028235d771..d818e30c5457 100644
> --- a/tools/perf/util/bpf_skel/vmlinux/vmlinux.h
> +++ b/tools/perf/util/bpf_skel/vmlinux/vmlinux.h
> @@ -15,6 +15,7 @@
>
> typedef __u8 u8;
> typedef __u32 u32;
> +typedef __s32 s32;
> typedef __u64 u64;
> typedef __s64 s64;
>
> --
> 2.46.0.76.ge559c4bf1a-goog
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-08-12 17:33 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-12 17:25 [PATCH v2] perf lock contention: Change stack_id type to s32 Namhyung Kim
2024-08-12 17:33 ` Arnaldo Carvalho de Melo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox