Fix MountFS sync

This commit is contained in:
Wang Runji 2019-08-02 13:37:06 +08:00 committed by Tate, Hongliang Tian
parent c68c3c9a94
commit c656776eb1
2 changed files with 3 additions and 2 deletions

2
deps/sefs vendored

@ -1 +1 @@
Subproject commit e0cf9c102875e9589ac862766cb8a17f94bfbee4
Subproject commit a843c6783ae14842225bb6777616dc707a657583

@ -23,7 +23,8 @@ pub struct HNode {
impl FileSystem for HostFS {
fn sync(&self) -> Result<()> {
unimplemented!()
warn!("HostFS: sync is unimplemented");
Ok(())
}
fn root_inode(&self) -> Arc<INode> {