From: bot+bpf-ci@kernel.org
To: dtatulea@nvidia.com,kuba@kernel.org,hawk@kernel.org,davem@davemloft.net,edumazet@google.com,pabeni@redhat.com,horms@kernel.org,shuah@kernel.org
Cc: dtatulea@nvidia.com,tariqt@nvidia.com,netdev@vger.kernel.org,linux-kselftest@vger.kernel.org,linux-kernel@vger.kernel.org,ast@kernel.org,andrii@kernel.org,daniel@iogearbox.net,martin.lau@kernel.org,eddyz87@gmail.com,yonghong.song@linux.dev,clm@meta.com,ihor.solodrai@linux.dev
Subject: Re: [RFC 1/2] page_pool: add benchmarking for napi-based recycling
Date: Fri, 7 Nov 2025 11:04:32 +0000 (UTC) [thread overview]
Message-ID: <e7c21df731231e96fd630f5486d6a4af9daf73b8ee5dcd09e8284912ef90c818@mail.kernel.org> (raw)
In-Reply-To: <20251107102853.1082118-4-dtatulea@nvidia.com>
[-- Attachment #1: Type: text/plain, Size: 3040 bytes --]
> diff --git a/tools/testing/selftests/net/bench/page_pool/bench_page_pool_simple.c b/tools/testing/selftests/net/bench/page_pool/bench_page_pool_simple.c
> index cb6468adb..84683c547 100644
> --- a/tools/testing/selftests/net/bench/page_pool/bench_page_pool_simple.c
> +++ b/tools/testing/selftests/net/bench/page_pool/bench_page_pool_simple.c
> @@ -16,6 +17,8 @@
> static int verbose = 1;
> #define MY_POOL_SIZE 1024
>
> +DEFINE_MUTEX(wait_for_tasklet);
> +
[ ... ]
> +/* Testing page_pool requires running under softirq.
> + *
> + * Running under a tasklet satisfy this, as tasklets are built on top of
> + * softirq.
> + */
> +static void pp_tasklet_handler(struct tasklet_struct *t)
> +{
> + uint32_t nr_loops = loops;
> +
> + if (in_serving_softirq())
> + pr_warn("%s(): in_serving_softirq fast-path\n",
> + __func__); // True
> + else
> + pr_warn("%s(): Cannot use page_pool fast-path\n", __func__);
> +
> + if (enabled(bit_run_bench_tasklet01))
> + time_bench_loop(nr_loops, 0, "tasklet_page_pool01_fast_path",
> + NULL, time_bench_page_pool01_fast_path);
> +
> + if (enabled(bit_run_bench_tasklet02))
> + time_bench_loop(nr_loops, 0, "tasklet_page_pool02_ptr_ring",
> + NULL, time_bench_page_pool02_ptr_ring);
> +
> + if (enabled(bit_run_bench_tasklet03))
> + time_bench_loop(nr_loops, 0, "tasklet_page_pool03_slow", NULL,
> + time_bench_page_pool03_slow);
> +
> + if (enabled(bit_run_bench_tasklet04))
> + time_bench_loop(nr_loops, 0, "tasklet_page_pool04_napi_aware",
> + NULL, time_bench_page_pool04_napi_aware);
> +
> + mutex_unlock(&wait_for_tasklet); /* Module __init waiting on unlock */
^^^^^^^^^^^^^
Can mutex_unlock() be called from softirq context? The pp_tasklet_handler()
function runs as a tasklet handler in softirq context, but mutexes are
sleeping locks that require process context. Would a completion or spinlock
be more appropriate here?
The synchronization pattern appears to be:
bench_page_pool_simple_module_init()->mutex_lock(&wait_for_tasklet)
bench_page_pool_simple_module_init()->tasklet_schedule(&pp_tasklet)
bench_page_pool_simple_module_init()->mutex_lock(&wait_for_tasklet) [blocks]
pp_tasklet_handler()->mutex_unlock(&wait_for_tasklet) [softirq context]
> +}
> +DECLARE_TASKLET_DISABLED(pp_tasklet, pp_tasklet_handler);
> +
> +static void run_tasklet_tests(void)
> +{
> + tasklet_enable(&pp_tasklet);
> + /* "Async" schedule tasklet, which runs on the CPU that schedule it */
> + tasklet_schedule(&pp_tasklet);
> +}
[ ... ]
> @@ -251,12 +332,19 @@ static int __init bench_page_pool_simple_module_init(void)
>
> run_benchmark_tests();
>
> + mutex_lock(&wait_for_tasklet);
> + run_tasklet_tests();
> + /* Sleep on mutex, waiting for tasklet to release */
> + mutex_lock(&wait_for_tasklet);
> +
> return 0;
> }
---
AI reviewed your patch. Please fix the bug or email reply why it's not a bug.
See: https://github.com/kernel-patches/vmtest/blob/master/ci/claude/README.md
CI run summary: https://github.com/kernel-patches/bpf/actions/runs/19165940352
next prev parent reply other threads:[~2025-11-07 11:04 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-07 10:28 [RFC 0/2] xdp: Delegate fast path return decision to page_pool Dragos Tatulea
2025-11-07 10:28 ` [RFC 1/2] page_pool: add benchmarking for napi-based recycling Dragos Tatulea
2025-11-07 11:04 ` bot+bpf-ci [this message]
2025-11-07 10:28 ` [RFC 2/2] xdp: Delegate fast path return decision to page_pool Dragos Tatulea
2025-11-10 11:06 ` Jesper Dangaard Brouer
2025-11-10 18:51 ` Dragos Tatulea
2025-11-11 7:54 ` Jesper Dangaard Brouer
2025-11-11 18:25 ` Dragos Tatulea
2025-12-01 10:12 ` Dragos Tatulea
2025-12-02 14:00 ` Jesper Dangaard Brouer
2025-12-02 16:29 ` Dragos Tatulea
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=e7c21df731231e96fd630f5486d6a4af9daf73b8ee5dcd09e8284912ef90c818@mail.kernel.org \
--to=bot+bpf-ci@kernel.org \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=clm@meta.com \
--cc=daniel@iogearbox.net \
--cc=davem@davemloft.net \
--cc=dtatulea@nvidia.com \
--cc=eddyz87@gmail.com \
--cc=edumazet@google.com \
--cc=hawk@kernel.org \
--cc=horms@kernel.org \
--cc=ihor.solodrai@linux.dev \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=martin.lau@kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=shuah@kernel.org \
--cc=tariqt@nvidia.com \
--cc=yonghong.song@linux.dev \
/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;
as well as URLs for NNTP newsgroup(s).