From: Marco Crivellari <marco.crivellari@suse.com>
To: linux-kernel@vger.kernel.org, rust-for-linux@vger.kernel.org
Cc: Tejun Heo <tj@kernel.org>, Lai Jiangshan <jiangshanlai@gmail.com>,
Frederic Weisbecker <frederic@kernel.org>,
Sebastian Andrzej Siewior <bigeasy@linutronix.de>,
Marco Crivellari <marco.crivellari@suse.com>,
Michal Hocko <mhocko@suse.com>, Miguel Ojeda <ojeda@kernel.org>,
Alex Gaynor <alex.gaynor@gmail.com>,
Alice Ryhl <aliceryhl@google.com>
Subject: [PATCH v5 0/2] Add new workqueue wrapper and enqueue on cpu functions
Date: Wed, 4 Feb 2026 16:50:35 +0100 [thread overview]
Message-ID: <20260204155037.325482-1-marco.crivellari@suse.com> (raw)
Hi,
Recently the workqueue code has been changed introducing two new workqueue,
system_percpu_wq and system_dfl_wq, as a future replacement for system_wq and
system_unbound_wq respectively.
The change has been introduced by:
'commit 128ea9f6ccfb ("workqueue: Add system_percpu_wq and system_dfl_wq")'
The old workqueue(s) will be removed in a next release cycle.
=== Introduced Changes by this series ===
1) [P 1] Add wrapper for the new system_dfl_wq
- This change introduce two new Rust functions in order to add a wrapper for
the new wq(s) defined in the C code.
2) [P 2] Add wrapper for system_percpu_wq and two new functions
- The new functions added are enqueue_cpu() and enqueue_delayed_cpu() and
are accepting a u32 parameter, the id of the CPU on which the work should
be scheduled on.
Thanks!
---
Changes in v5:
- system_dfl() renamed to system_default()
- Cover letter v4:
https://lore.kernel.org/all/20260203152818.317806-1-marco.crivellari@suse.com/
Changes in v4:
- two new function added in the Queue implementation:
* enqueue_cpu()
* enqueue_delayed_cpu()
These functions receive a u32 CPU id in order to schedule work on that CPU.
More info can be found in the v3 discussion:
https://lore.kernel.org/all/CAAofZF6jcCAdDjRp-7w7+_ZgOG4k3apxbSiKvGoUDVf5hw0GhA@mail.gmail.com/
Changes in v3:
- added a proper comment documenting the new added functions.
Changes in v2:
- added system_percpu() and system_dfl() in order to use the new
wq defined in the C code.
- fixed misleading paragraph in the commit log (no warnings are currently
present).
Marco Crivellari (2):
rust: add system_default() around the new system_dfl_wq
rust: add system_percpu() and per-cpu enqueue functions
rust/kernel/sync/completion.rs | 2 +-
rust/kernel/workqueue.rs | 110 +++++++++++++++++++++++++++++++--
2 files changed, 105 insertions(+), 7 deletions(-)
--
2.52.0
next reply other threads:[~2026-02-04 15:50 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-04 15:50 Marco Crivellari [this message]
2026-02-04 15:50 ` [PATCH v5 1/2] rust: add system_default() around the new system_dfl_wq Marco Crivellari
2026-02-04 16:19 ` Alice Ryhl
2026-02-04 16:29 ` Marco Crivellari
2026-02-04 16:38 ` Alice Ryhl
2026-02-04 16:47 ` Sebastian Andrzej Siewior
2026-04-09 9:45 ` Marco Crivellari
2026-02-04 15:50 ` [PATCH v5 2/2] rust: add system_percpu() and per-cpu enqueue functions Marco Crivellari
2026-07-04 20:03 ` [PATCH v5 0/2] Add new workqueue wrapper and enqueue on cpu functions Miguel Ojeda
2026-07-08 7:40 ` Marco Crivellari
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=20260204155037.325482-1-marco.crivellari@suse.com \
--to=marco.crivellari@suse.com \
--cc=alex.gaynor@gmail.com \
--cc=aliceryhl@google.com \
--cc=bigeasy@linutronix.de \
--cc=frederic@kernel.org \
--cc=jiangshanlai@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mhocko@suse.com \
--cc=ojeda@kernel.org \
--cc=rust-for-linux@vger.kernel.org \
--cc=tj@kernel.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