summaryrefslogtreecommitdiff
path: root/src/block_device/mod.rs
diff options
context:
space:
mode:
authorChuyan Zhang <me@zcy.moe>2023-11-30 02:15:06 -0800
committerChuyan Zhang <me@zcy.moe>2023-11-30 02:15:06 -0800
commit1eac97eea4ec0bcef0be061a2cba93a584355283 (patch)
treed98fb1f6e3811286a0733c9df21e467590635ad2 /src/block_device/mod.rs
parentb3db8a5a710aa0890c80241ffb3fd9792bf1cbe7 (diff)
downloadmyfs-1eac97eea4ec0bcef0be061a2cba93a584355283.tar.gz
myfs-1eac97eea4ec0bcef0be061a2cba93a584355283.zip
Add real disk i/o, add mkfs.aya (not yet implemented)
Diffstat (limited to 'src/block_device/mod.rs')
-rw-r--r--src/block_device/mod.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/block_device/mod.rs b/src/block_device/mod.rs
deleted file mode 100644
index a8fd8b7..0000000
--- a/src/block_device/mod.rs
+++ /dev/null
@@ -1,8 +0,0 @@
-/// Abstracts for block devices.
-/// Currently only a mock memory disk.
-pub mod memory_disk;
-pub const BLOCK_SIZE: usize = 4096;
-pub trait BlockDevice {
- fn read(&self, block_id: usize, buffer: &mut [u8]);
- fn write(&self, block_id: usize, buffer: &[u8]);
-}