blob: 9f5d564671eaca92623ed746645f5e16d41004b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
// SPDX-License-Identifier: GPL-2.0
//! Rust character device sample.
use kernel::prelude::*;
use kernel::{chrdev, file};
module! {
type: RustChrdev,
name: b"rust_chrdev",
author: b"Rust for Linux Contributors",
description: b"Rust character device sample",
license: b"GPL",
}
struct RustFile;
impl file::Operations for RustFile {
kernel::declare_file_operations!();
fn open(_shared: &(), _file: &file::File) -> Result {
Ok(())
}
}
struct RustChrdev {
_dev: Pin<Box<chrdev::Registration<2>>>,
}
impl kernel::Module for RustChrdev {
fn init(name: &'static CStr, module: &'static ThisModule) -> Result<Self> {
pr_info!("Rust character device sample (init)\n");
let mut chrdev_reg = chrdev::Registration::new_pinned(name, 0, module)?;
// Register the same kind of device twice, we're just demonstrating
// that you can use multiple minors. There are two minors in this case
// because its type is `chrdev::Registration<2>`
chrdev_reg.as_mut().register::<RustFile>()?;
chrdev_reg.as_mut().register::<RustFile>()?;
Ok(RustChrdev { _dev: chrdev_reg })
}
}
impl Drop for RustChrdev {
fn drop(&mut self) {
pr_info!("Rust character device sample (exit)\n");
}
}
|