mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-28 01:43:47 -04:00
Add support for parsing boolean module parameters in the Rust module! macro. Currently, only integer types are supported by the `module_param!` macros. This patch implements the `ModuleParam` trait for `bool` by delegating the string parsing to the existing C implementation via `kstrtobool_bytes()`. It also wires up `PARAM_OPS_BOOL` so that the Rust parameter system correctly links to the C `param_ops_bool` structure. For demonstration and verification, a boolean parameter is added to `samples/rust/rust_minimal.rs`. Support for boolean parameters will initially be used by the Rust null block driver [1]. Link: https://lore.kernel.org/all/20260609-rnull-v6-19-rc5-send-v2-4-82c7404542e2@kernel.org/ [1] Assisted-by: Codex:GPT-5 Signed-off-by: Wenzhao Liao <wenzhaoliao@ruc.edu.cn> Tested-by: Andreas Hindborg <a.hindborg@kernel.org> Reviewed-by: Andreas Hindborg <a.hindborg@kernel.org> Link: https://lore.kernel.org/linux-modules/20260411130254.3510128-1-wenzhaoliao@ruc.edu.cn/ [ppavlu: add motivation to the commit message and rebase the patch] Signed-off-by: Petr Pavlu <petr.pavlu@suse.com>
57 lines
1.4 KiB
Rust
57 lines
1.4 KiB
Rust
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
//! Rust minimal sample.
|
|
|
|
use kernel::prelude::*;
|
|
|
|
module! {
|
|
type: RustMinimal,
|
|
name: "rust_minimal",
|
|
authors: ["Rust for Linux Contributors"],
|
|
description: "Rust minimal sample",
|
|
license: "GPL",
|
|
params: {
|
|
test_parameter: i64 {
|
|
default: 1,
|
|
description: "This parameter has a default of 1",
|
|
},
|
|
test_bool_parameter: bool {
|
|
default: false,
|
|
description: "This boolean parameter defaults to false",
|
|
},
|
|
},
|
|
}
|
|
|
|
struct RustMinimal {
|
|
numbers: KVec<i32>,
|
|
}
|
|
|
|
impl kernel::Module for RustMinimal {
|
|
fn init(_module: &'static ThisModule) -> Result<Self> {
|
|
pr_info!("Rust minimal sample (init)\n");
|
|
pr_info!("Am I built-in? {}\n", !cfg!(MODULE));
|
|
pr_info!(
|
|
"test_parameter: {}\n",
|
|
module_parameters::test_parameter.value()
|
|
);
|
|
pr_info!(
|
|
"test_bool_parameter: {}\n",
|
|
module_parameters::test_bool_parameter.value()
|
|
);
|
|
|
|
let mut numbers = KVec::new();
|
|
numbers.push(72, GFP_KERNEL)?;
|
|
numbers.push(108, GFP_KERNEL)?;
|
|
numbers.push(200, GFP_KERNEL)?;
|
|
|
|
Ok(RustMinimal { numbers })
|
|
}
|
|
}
|
|
|
|
impl Drop for RustMinimal {
|
|
fn drop(&mut self) {
|
|
pr_info!("My numbers are {:?}\n", self.numbers);
|
|
pr_info!("Rust minimal sample (exit)\n");
|
|
}
|
|
}
|