On 10/18/23 14:25, Wedson Almeida Filho wrote:> +kernel::module_fs! {
+ type: RoFs, + name: "rust_rofs", + author: "Rust for Linux Contributors", + description: "Rust read-only file system sample", + license: "GPL", +} + +struct RoFs; +impl fs::FileSystem for RoFs { + const NAME: &'static CStr = c_str!("rust-fs"); +}
Why use two different names here? Alice