Allow read of filesystem names

This commit is contained in:
Jeremy Soller
2016-02-24 14:02:37 -07:00
commit bc2d90f531
13 changed files with 644 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
/// A disk extent
#[derive(Copy, Clone, Debug, Default)]
#[repr(packed)]
pub struct Extent {
pub block: u64,
pub length: u64,
}