Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
linusw
/
linux-integrator
/
82ebecdc74ff555daf70b811d854b1f32a296bea
/
.
/
rust
/
kernel
/
fs.rs
blob: 6ba6bdf143cb991c6e78215178eb585260215da0 [
file
] [
log
] [
blame
]
// 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
;