diff options
Diffstat (limited to 'rust/kernel/fs.rs')
| -rw-r--r-- | rust/kernel/fs.rs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/rust/kernel/fs.rs b/rust/kernel/fs.rs new file mode 100644 index 000000000000..6ba6bdf143cb --- /dev/null +++ b/rust/kernel/fs.rs @@ -0,0 +1,11 @@ +// 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}; + +mod kiocb; +pub use self::kiocb::Kiocb; |
