Better chunk list storage in inodes

pull/10/head
Dennis Schwerdel 2017-03-23 07:03:48 +01:00
parent 519ac6bade
commit 5377c5f8df
5 changed files with 2 additions and 2 deletions

View File

@ -88,8 +88,8 @@ pub enum FileContents {
}
serde_impl!(FileContents(u8) {
Inline(ByteBuf) => 0,
ChunkedDirect(Vec<Chunk>) => 1,
ChunkedIndirect(Vec<Chunk>) => 2
ChunkedDirect(ChunkList) => 1,
ChunkedIndirect(ChunkList) => 2
});