mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-12 23:06:51 +00:00
10 lines
156 B
Rust
10 lines
156 B
Rust
//! Ramfs based on PageCache
|
|
|
|
pub use fs::RamFS;
|
|
|
|
mod fs;
|
|
|
|
const RAMFS_MAGIC: u64 = 0x0102_1994;
|
|
const BLOCK_SIZE: usize = 4096;
|
|
const ROOT_INO: usize = 1;
|