kernel/vfs/state.rs
1// SPDX-License-Identifier: GPL-3.0-only
2//! Virtual filesystem state placeholder for [`KState`].
3//!
4//! Authors: MarioS271
5
6/// Holds the virtual filesystem layer state and registered filesystem drivers
7#[repr(align(64))]
8pub struct Vfs {
9
10}
11
12impl Vfs {
13 /// Constructor; initializes all values zeroed or uninited
14 pub const fn new() -> Self {
15 Self {
16
17 }
18 }
19}