public inbox for linux-perf-users@vger.kernel.org
 help / color / mirror / Atom feed
* [bug report] perf lock: Print the number of lost entries for BPF
@ 2024-08-09 12:29 Dan Carpenter
  2024-08-10 19:17 ` [PATCH] perf lock contention: Change stack_id type to s32 Namhyung Kim
  0 siblings, 1 reply; 7+ messages in thread
From: Dan Carpenter @ 2024-08-09 12:29 UTC (permalink / raw)
  To: Namhyung Kim; +Cc: linux-perf-users

Hello Namhyung Kim,

Commit 6d499a6b3d90 ("perf lock: Print the number of lost entries for
BPF") from Aug 2, 2022 (linux-next), leads to the following Smatch
static checker warning:

	./tools/perf/util/bpf_skel/lock_contention.bpf.c:379 contention_begin()
	warn: unsigned 'pelem->stack_id' is never less than zero.

./tools/perf/util/bpf_skel/lock_contention.bpf.c
    360 SEC("tp_btf/contention_begin")
    361 int contention_begin(u64 *ctx)
    362 {
    363         struct tstamp_data *pelem;
    364 
    365         if (!enabled || !can_record(ctx))
    366                 return 0;
    367 
    368         pelem = get_tstamp_elem(ctx[1]);
    369         if (pelem == NULL)
    370                 return 0;
    371 
    372         pelem->timestamp = bpf_ktime_get_ns();
    373         pelem->lock = (__u64)ctx[0];
    374         pelem->flags = (__u32)ctx[1];
    375 
    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)

->stack_id is a u32 so it can't be less than zero

    380                         __sync_fetch_and_add(&stack_fail, 1);
    381         } else if (aggr_mode == LOCK_AGGR_TASK) {
    382                 struct task_struct *task;
    383 
    384                 if (lock_owner) {
    385                         task = get_lock_owner(pelem->lock, pelem->flags);
    386 
    387                         /* The flags is not used anymore.  Pass the owner pid. */
    388                         if (task)
    389                                 pelem->flags = BPF_CORE_READ(task, pid);

regards,
dan carpenter

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2024-08-12 17:05 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-09 12:29 [bug report] perf lock: Print the number of lost entries for BPF Dan Carpenter
2024-08-10 19:17 ` [PATCH] perf lock contention: Change stack_id type to s32 Namhyung Kim
2024-08-12 14:52   ` kernel test robot
2024-08-12 16:09   ` Arnaldo Carvalho de Melo
2024-08-12 16:52     ` Arnaldo Carvalho de Melo
2024-08-12 16:57       ` Namhyung Kim
2024-08-12 17:05         ` 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