[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <176958920344.510.9567843514888583363.tip-bot2@tip-bot2>
Date: Wed, 28 Jan 2026 08:33:23 -0000
From: "tip-bot2 for Tamir Duberstein" <tip-bot2@...utronix.de>
To: linux-tip-commits@...r.kernel.org
Cc: Tamir Duberstein <tamird@...nel.org>, Boqun Feng <boqun.feng@...il.com>,
"Peter Zijlstra (Intel)" <peterz@...radead.org>, Gary Guo <gary@...yguo.net>,
x86@...nel.org, linux-kernel@...r.kernel.org
Subject:
[tip: locking/core] rust: sync: Replace `kernel::c_str!` with C-Strings
The following commit has been merged into the locking/core branch of tip:
Commit-ID: e6de07249ef381b674f0d65adf9defcdab76b768
Gitweb: https://git.kernel.org/tip/e6de07249ef381b674f0d65adf9defcdab76b768
Author: Tamir Duberstein <tamird@...nel.org>
AuthorDate: Thu, 22 Jan 2026 21:46:24 -08:00
Committer: Peter Zijlstra <peterz@...radead.org>
CommitterDate: Wed, 28 Jan 2026 09:25:44 +01:00
rust: sync: Replace `kernel::c_str!` with C-Strings
C-String literals were added in Rust 1.77. Replace instances of
`kernel::c_str!` with C-String literals where possible.
Signed-off-by: Tamir Duberstein <tamird@...nel.org>
Signed-off-by: Boqun Feng <boqun.feng@...il.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@...radead.org>
Reviewed-by: Gary Guo <gary@...yguo.net>
Link: https://patch.msgid.link/20260120-cstr-sync-again-v1-1-2a775a2a36fd@kernel.org
Link: https://patch.msgid.link/20260123054624.8226-2-boqun.feng@gmail.com
---
rust/kernel/sync.rs | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/rust/kernel/sync.rs b/rust/kernel/sync.rs
index b10e576..993dbf2 100644
--- a/rust/kernel/sync.rs
+++ b/rust/kernel/sync.rs
@@ -126,13 +126,12 @@ impl PinnedDrop for LockClassKey {
/// # Examples
///
/// ```
-/// use kernel::c_str;
/// use kernel::sync::{static_lock_class, Arc, SpinLock};
///
/// fn new_locked_int() -> Result<Arc<SpinLock<u32>>> {
/// Arc::pin_init(SpinLock::new(
/// 42,
-/// c_str!("new_locked_int"),
+/// c"new_locked_int",
/// static_lock_class!(),
/// ), GFP_KERNEL)
/// }
Powered by blists - more mailing lists