Added NotImplementedFileSystem.SetInodeAttributes.

geesefs-0-30-9
Aaron Jacobs 2015-03-06 05:45:45 +11:00
parent 632b1e6120
commit 528b112c72
1 changed files with 7 additions and 0 deletions

View File

@ -45,6 +45,13 @@ func (fs *NotImplementedFileSystem) GetInodeAttributes(
return nil, fuse.ENOSYS
}
func (fs *NotImplementedFileSystem) SetInodeAttributes(
ctx context.Context,
req *fuse.SetInodeAttributesRequest) (
*fuse.SetInodeAttributesResponse, error) {
return nil, fuse.ENOSYS
}
func (fs *NotImplementedFileSystem) ForgetInode(
ctx context.Context,
req *fuse.ForgetInodeRequest) (*fuse.ForgetInodeResponse, error) {