Refactor easy-fs

This commit is contained in:
Yifan Wu 2021-02-24 03:42:45 +08:00
parent c98c7c6558
commit 17580c6902
14 changed files with 329 additions and 278 deletions

View file

@ -5,7 +5,6 @@ extern crate alloc;
mod block_dev;
mod layout;
mod efs;
mod dirty;
mod bitmap;
mod vfs;
mod block_cache;
@ -15,6 +14,5 @@ pub use block_dev::BlockDevice;
pub use efs::EasyFileSystem;
pub use vfs::Inode;
use layout::*;
use dirty::Dirty;
use bitmap::Bitmap;
use block_cache::{BlockCache, get_block_cache};
use block_cache::get_block_cache;