summaryrefslogtreecommitdiff
path: root/rust/kernel/fs.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rust/kernel/fs.rs')
-rw-r--r--rust/kernel/fs.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/rust/kernel/fs.rs b/rust/kernel/fs.rs
new file mode 100644
index 000000000000..0121b38c59e6
--- /dev/null
+++ b/rust/kernel/fs.rs
@@ -0,0 +1,8 @@
+// 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};