diff options
| author | Chuyan Zhang <[email protected]> | 2023-11-18 02:43:01 -0800 |
|---|---|---|
| committer | Chuyan Zhang <[email protected]> | 2023-11-18 02:43:01 -0800 |
| commit | 886df6daf6bb6b922276157dba1cc099e897a9ea (patch) | |
| tree | 300b135bddd8ce8631dfd3ec45a9bf3d021a24df /src/disk/mod.rs | |
| parent | cd0163da154367f5437ae1423bc97c450d74adf7 (diff) | |
| download | myfs-886df6daf6bb6b922276157dba1cc099e897a9ea.tar.gz myfs-886df6daf6bb6b922276157dba1cc099e897a9ea.zip | |
Major refactor of file hierarchy
Diffstat (limited to 'src/disk/mod.rs')
| -rw-r--r-- | src/disk/mod.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/disk/mod.rs b/src/disk/mod.rs index 404c6ab..65f313c 100644 --- a/src/disk/mod.rs +++ b/src/disk/mod.rs @@ -1,4 +1,7 @@ +/// On-disk data structures and logic. +/// Including bitmaps, inodes and blocks. + pub mod bitmap; pub mod inode; - pub mod data_block; +pub mod allocation; |
