Linux Trace Kernel
 help / color / mirror / Atom feed
From: Jiri Olsa <olsajiri@gmail.com>
To: Menglong Dong <menglong8.dong@gmail.com>
Cc: alexei.starovoitov@gmail.com, mhiramat@kernel.org,
	rostedt@goodmis.org, mathieu.desnoyers@efficios.com,
	hca@linux.ibm.com, revest@chromium.org,
	linux-kernel@vger.kernel.org, linux-trace-kernel@vger.kernel.org,
	bpf@vger.kernel.org
Subject: Re: [PATCH RFC bpf-next v2 0/4] fprobe: use rhashtable for fprobe_ip_table
Date: Mon, 28 Jul 2025 15:59:57 +0200	[thread overview]
Message-ID: <aIeCXbpno1y3Aio1@krava> (raw)
In-Reply-To: <20250728072637.1035818-1-dongml2@chinatelecom.cn>

On Mon, Jul 28, 2025 at 03:22:49PM +0800, Menglong Dong wrote:
> For now, the budget of the hash table that is used for fprobe_ip_table is
> fixed, which is 256, and can cause huge overhead when the hooked functions
> is a huge quantity.
> 
> In this series, we use rhltable for fprobe_ip_table to reduce the
> overhead.
> 
> Meanwhile, we also add the benchmark testcase "kprobe-multi-all", which
> will hook all the kernel functions during the testing. Before this series,
> the performance is:
>   usermode-count :  875.380 ± 0.366M/s 
>   kernel-count   :  435.924 ± 0.461M/s 
>   syscall-count  :   31.004 ± 0.017M/s 
>   fentry         :  134.076 ± 1.752M/s 
>   fexit          :   68.319 ± 0.055M/s 
>   fmodret        :   71.530 ± 0.032M/s 
>   rawtp          :  202.751 ± 0.138M/s 
>   tp             :   79.562 ± 0.084M/s 
>   kprobe         :   55.587 ± 0.028M/s 
>   kprobe-multi   :   56.481 ± 0.043M/s 
>   kprobe-multi-all:    6.283 ± 0.005M/s << look this
>   kretprobe      :   22.378 ± 0.028M/s 
>   kretprobe-multi:   28.205 ± 0.025M/s
> 
> With this series, the performance is:
>   usermode-count :  902.387 ± 0.762M/s 
>   kernel-count   :  427.356 ± 0.368M/s 
>   syscall-count  :   30.830 ± 0.016M/s 
>   fentry         :  135.554 ± 0.064M/s 
>   fexit          :   68.317 ± 0.218M/s 
>   fmodret        :   70.633 ± 0.275M/s 
>   rawtp          :  193.404 ± 0.346M/s 
>   tp             :   80.236 ± 0.068M/s 
>   kprobe         :   55.200 ± 0.359M/s 
>   kprobe-multi   :   54.304 ± 0.092M/s 
>   kprobe-multi-all:   54.487 ± 0.035M/s << look this

I meassured bit less speed up, but still great

kprobe-multi-all:    3.565 ± 0.047M/s
kprobe-multi-all:   11.553 ± 0.458M/s

could you add kretprobe-multi-all bench as well?

thanks,
jirka


>   kretprobe      :   22.381 ± 0.075M/s 
>   kretprobe-multi:   27.926 ± 0.034M/s
> 
> The benchmark of "kprobe-multi-all" increase from 6.283M/s to 54.487M/s.
> 
> The locking is not handled properly in the first patch. In the
> fprobe_entry, we should use RCU when we access the rhlist_head. However,
> we can't use RCU for __fprobe_handler, as it can sleep. In the origin
> logic, it seems that the usage of hlist_for_each_entry_from_rcu() is not
> protected by rcu_read_lock neither, isn't it? I don't know how to handle
> this part ;(
> 
> Menglong Dong (4):
>   fprobe: use rhltable for fprobe_ip_table
>   selftests/bpf: move get_ksyms and get_addrs to trace_helpers.c
>   selftests/bpf: skip recursive functions for kprobe_multi
>   selftests/bpf: add benchmark testing for kprobe-multi-all
> 
>  include/linux/fprobe.h                        |   2 +-
>  kernel/trace/fprobe.c                         | 141 ++++++-----
>  tools/testing/selftests/bpf/bench.c           |   2 +
>  .../selftests/bpf/benchs/bench_trigger.c      |  30 +++
>  .../selftests/bpf/benchs/run_bench_trigger.sh |   2 +-
>  .../bpf/prog_tests/kprobe_multi_test.c        | 220 +----------------
>  tools/testing/selftests/bpf/trace_helpers.c   | 230 ++++++++++++++++++
>  tools/testing/selftests/bpf/trace_helpers.h   |   3 +
>  8 files changed, 348 insertions(+), 282 deletions(-)
> 
> -- 
> 2.50.1
> 
> 

  parent reply	other threads:[~2025-07-28 14:00 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-07-28  7:22 [PATCH RFC bpf-next v2 0/4] fprobe: use rhashtable for fprobe_ip_table Menglong Dong
2025-07-28  7:22 ` [PATCH RFC bpf-next v2 1/4] fprobe: use rhltable " Menglong Dong
2025-07-29  1:42   ` Masami Hiramatsu
2025-07-29  1:55     ` Menglong Dong
2025-07-28  7:22 ` [PATCH RFC bpf-next v2 2/4] selftests/bpf: move get_ksyms and get_addrs to trace_helpers.c Menglong Dong
2025-07-28  7:22 ` [PATCH RFC bpf-next v2 3/4] selftests/bpf: skip recursive functions for kprobe_multi Menglong Dong
2025-07-28  7:22 ` [PATCH RFC bpf-next v2 4/4] selftests/bpf: add benchmark testing for kprobe-multi-all Menglong Dong
2025-07-28 12:35 ` [PATCH RFC bpf-next v2 0/4] fprobe: use rhashtable for fprobe_ip_table Masami Hiramatsu
2025-07-28 14:26   ` Menglong Dong
2025-07-28 23:53     ` Masami Hiramatsu
2025-07-28 13:59 ` Jiri Olsa [this message]
2025-07-28 14:27   ` Menglong Dong
2025-07-28 14:52   ` Menglong Dong

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=aIeCXbpno1y3Aio1@krava \
    --to=olsajiri@gmail.com \
    --cc=alexei.starovoitov@gmail.com \
    --cc=bpf@vger.kernel.org \
    --cc=hca@linux.ibm.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-trace-kernel@vger.kernel.org \
    --cc=mathieu.desnoyers@efficios.com \
    --cc=menglong8.dong@gmail.com \
    --cc=mhiramat@kernel.org \
    --cc=revest@chromium.org \
    --cc=rostedt@goodmis.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox