Create two files and list them.

This commit is contained in:
Yifan Wu 2020-12-19 15:28:42 +08:00
parent 00eaa64e7d
commit 3c1419185d
7 changed files with 104 additions and 36 deletions

View file

@ -6,6 +6,7 @@ mod efs;
mod dirty;
mod bitmap;
mod vfs;
mod block_cache;
pub const BLOCK_SZ: usize = 512;
pub use block_dev::BlockDevice;
@ -13,4 +14,5 @@ pub use efs::EasyFileSystem;
pub use vfs::Inode;
use layout::*;
use dirty::Dirty;
use bitmap::Bitmap;
use bitmap::Bitmap;
use block_cache::{BlockCache, get_block_cache};