UNMAP: propagate request to backing store

This commit is contained in:
chessman
2019-05-29 16:14:31 +03:00
parent 22d47a9212
commit 12b06c21ef
6 changed files with 36 additions and 14 deletions
+1 -1
View File
@@ -114,6 +114,6 @@ func (bs *FileBackingStore) DataAdvise(offset, length int64, advise uint32) erro
return util.Fadvise(bs.file, offset, length, advise)
}
func (bs *FileBackingStore) Unmap() error {
func (bs *FileBackingStore) Unmap([]api.UnmapBlockDescriptor) error {
return nil
}