JustOS/linux-6.13/rust/kernel/fs.rs

9 lines
186 B
Rust
Raw Normal View History

2025-01-24 14:00:19 +00:00
// SPDX-License-Identifier: GPL-2.0
//! Kernel file systems.
//!
//! C headers: [`include/linux/fs.h`](srctree/include/linux/fs.h)
pub mod file;
pub use self::file::{File, LocalFile};