2021-07-03 15:21:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
|
|
|
//! Rust minimal sample.
|
|
|
|
|
|
|
|
use kernel::prelude::*;
|
|
|
|
|
|
|
|
module! {
|
|
|
|
type: RustMinimal,
|
2022-11-10 16:41:19 +00:00
|
|
|
name: "rust_minimal",
|
|
|
|
author: "Rust for Linux Contributors",
|
|
|
|
description: "Rust minimal sample",
|
|
|
|
license: "GPL",
|
2021-07-03 15:21:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct RustMinimal {
|
2024-10-04 15:41:23 +00:00
|
|
|
numbers: KVec<i32>,
|
2021-07-03 15:21:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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));
|
|
|
|
|
2024-10-04 15:41:23 +00:00
|
|
|
let mut numbers = KVec::new();
|
2024-03-28 01:36:00 +00:00
|
|
|
numbers.push(72, GFP_KERNEL)?;
|
|
|
|
numbers.push(108, GFP_KERNEL)?;
|
|
|
|
numbers.push(200, GFP_KERNEL)?;
|
2021-07-03 15:21:12 +00:00
|
|
|
|
|
|
|
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");
|
|
|
|
}
|
|
|
|
}
|