From: Tamir Duberstein <tamird@gmail.com>
C-String literals were added in Rust 1.77. Replace instances of
`kernel::c_str!` with C-String literals where possible.
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Reviewed-by: Alice Ryhl <aliceryhl@google.com>
Reviewed-by: Benno Lossin <lossin@kernel.org>
Signed-off-by: Tamir Duberstein <tamird@gmail.com>
---
drivers/net/phy/ax88796b_rust.rs | 7 +++----
drivers/net/phy/qt2025.rs | 5 ++---
2 files changed, 5 insertions(+), 7 deletions(-)
diff --git a/drivers/net/phy/ax88796b_rust.rs b/drivers/net/phy/ax88796b_rust.rs
index bc73ebccc2aa..2d24628a4e58 100644
--- a/drivers/net/phy/ax88796b_rust.rs
+++ b/drivers/net/phy/ax88796b_rust.rs
@@ -5,7 +5,6 @@
//!
//! C version of this driver: [`drivers/net/phy/ax88796b.c`](./ax88796b.c)
use kernel::{
- c_str,
net::phy::{self, reg::C22, DeviceId, Driver},
prelude::*,
uapi,
@@ -41,7 +40,7 @@ fn asix_soft_reset(dev: &mut phy::Device) -> Result {
#[vtable]
impl Driver for PhyAX88772A {
const FLAGS: u32 = phy::flags::IS_INTERNAL;
- const NAME: &'static CStr = c_str!("Asix Electronics AX88772A");
+ const NAME: &'static CStr = c"Asix Electronics AX88772A";
const PHY_DEVICE_ID: DeviceId = DeviceId::new_with_exact_mask(0x003b1861);
// AX88772A is not working properly with some old switches (NETGEAR EN 108TP):
@@ -105,7 +104,7 @@ fn link_change_notify(dev: &mut phy::Device) {
#[vtable]
impl Driver for PhyAX88772C {
const FLAGS: u32 = phy::flags::IS_INTERNAL;
- const NAME: &'static CStr = c_str!("Asix Electronics AX88772C");
+ const NAME: &'static CStr = c"Asix Electronics AX88772C";
const PHY_DEVICE_ID: DeviceId = DeviceId::new_with_exact_mask(0x003b1881);
fn suspend(dev: &mut phy::Device) -> Result {
@@ -125,7 +124,7 @@ fn soft_reset(dev: &mut phy::Device) -> Result {
#[vtable]
impl Driver for PhyAX88796B {
- const NAME: &'static CStr = c_str!("Asix Electronics AX88796B");
+ const NAME: &'static CStr = c"Asix Electronics AX88796B";
const PHY_DEVICE_ID: DeviceId = DeviceId::new_with_model_mask(0x003b1841);
fn soft_reset(dev: &mut phy::Device) -> Result {
diff --git a/drivers/net/phy/qt2025.rs b/drivers/net/phy/qt2025.rs
index aaaead6512a0..470d89a0ac00 100644
--- a/drivers/net/phy/qt2025.rs
+++ b/drivers/net/phy/qt2025.rs
@@ -9,7 +9,6 @@
//!
//! The QT2025 PHY integrates an Intel 8051 micro-controller.
-use kernel::c_str;
use kernel::error::code;
use kernel::firmware::Firmware;
use kernel::io::poll::read_poll_timeout;
@@ -38,7 +37,7 @@
#[vtable]
impl Driver for PhyQT2025 {
- const NAME: &'static CStr = c_str!("QT2025 10Gpbs SFP+");
+ const NAME: &'static CStr = c"QT2025 10Gpbs SFP+";
const PHY_DEVICE_ID: phy::DeviceId = phy::DeviceId::new_with_exact_mask(0x0043a400);
fn probe(dev: &mut phy::Device) -> Result<()> {
@@ -71,7 +70,7 @@ fn probe(dev: &mut phy::Device) -> Result<()> {
// The micro-controller will start running from the boot ROM.
dev.write(C45::new(Mmd::PCS, 0xe854), 0x00c0)?;
- let fw = Firmware::request(c_str!("qt2025-2.0.3.3.fw"), dev.as_ref())?;
+ let fw = Firmware::request(c"qt2025-2.0.3.3.fw", dev.as_ref())?;
if fw.data().len() > SZ_16K + SZ_8K {
return Err(code::EFBIG);
}
--
2.52.0
On 12/22/25 1:32 PM, Tamir Duberstein wrote: > From: Tamir Duberstein <tamird@gmail.com> > > C-String literals were added in Rust 1.77. Replace instances of > `kernel::c_str!` with C-String literals where possible. > > Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> > Reviewed-by: Alice Ryhl <aliceryhl@google.com> > Reviewed-by: Benno Lossin <lossin@kernel.org> > Signed-off-by: Tamir Duberstein <tamird@gmail.com> > --- > drivers/net/phy/ax88796b_rust.rs | 7 +++---- > drivers/net/phy/qt2025.rs | 5 ++--- > 2 files changed, 5 insertions(+), 7 deletions(-) It's not clear to me if this is targeting the net-next tree. In such case: ## Form letter - net-next-closed The net-next tree is closed for new drivers, features, code refactoring and optimizations due to the merge window and the winter break. We are currently accepting bug fixes only. Please repost when net-next reopens after Jan 2nd. RFC patches sent for review only are obviously welcome at any time.
On Tue, Dec 30, 2025 at 5:40 AM Paolo Abeni <pabeni@redhat.com> wrote: > > On 12/22/25 1:32 PM, Tamir Duberstein wrote: > > From: Tamir Duberstein <tamird@gmail.com> > > > > C-String literals were added in Rust 1.77. Replace instances of > > `kernel::c_str!` with C-String literals where possible. > > > > Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> > > Reviewed-by: Alice Ryhl <aliceryhl@google.com> > > Reviewed-by: Benno Lossin <lossin@kernel.org> > > Signed-off-by: Tamir Duberstein <tamird@gmail.com> > > --- > > drivers/net/phy/ax88796b_rust.rs | 7 +++---- > > drivers/net/phy/qt2025.rs | 5 ++--- > > 2 files changed, 5 insertions(+), 7 deletions(-) > > It's not clear to me if this is targeting the net-next tree. In such case: > > ## Form letter - net-next-closed > > The net-next tree is closed for new drivers, features, code refactoring > and optimizations due to the merge window and the winter break. We are > currently accepting bug fixes only. > > Please repost when net-next reopens after Jan 2nd. > > RFC patches sent for review only are obviously welcome at any time. Yes, this is targeting net-next (unless you folks are OK with it going through rust-next, which is also OK with me). Thank you for including the date to resend.
On Tue, Dec 30, 2025 at 6:27 AM Tamir Duberstein <tamird@kernel.org> wrote: > > On Tue, Dec 30, 2025 at 5:40 AM Paolo Abeni <pabeni@redhat.com> wrote: > > > > On 12/22/25 1:32 PM, Tamir Duberstein wrote: > > > From: Tamir Duberstein <tamird@gmail.com> > > > > > > C-String literals were added in Rust 1.77. Replace instances of > > > `kernel::c_str!` with C-String literals where possible. > > > > > > Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> > > > Reviewed-by: Alice Ryhl <aliceryhl@google.com> > > > Reviewed-by: Benno Lossin <lossin@kernel.org> > > > Signed-off-by: Tamir Duberstein <tamird@gmail.com> > > > --- > > > drivers/net/phy/ax88796b_rust.rs | 7 +++---- > > > drivers/net/phy/qt2025.rs | 5 ++--- > > > 2 files changed, 5 insertions(+), 7 deletions(-) > > > > It's not clear to me if this is targeting the net-next tree. In such case: > > > > ## Form letter - net-next-closed > > > > The net-next tree is closed for new drivers, features, code refactoring > > and optimizations due to the merge window and the winter break. We are > > currently accepting bug fixes only. > > > > Please repost when net-next reopens after Jan 2nd. > > > > RFC patches sent for review only are obviously welcome at any time. > > Yes, this is targeting net-next (unless you folks are OK with it going > through rust-next, which is also OK with me). Thank you for including > the date to resend. v2 (same as v1 + tags): https://lore.kernel.org/all/20260103-cstr-net-v2-0-8688f504b85d@gmail.com/. Cheers. Tamir
© 2016 - 2026 Red Hat, Inc.