Browse Source

remove ctx

pull/1213/head
Chris Lu 5 years ago
parent
commit
36d6595658
  1. 8
      weed/filesys/dir.go

8
weed/filesys/dir.go

@ -354,7 +354,7 @@ func (dir *Dir) Setattr(ctx context.Context, req *fuse.SetattrRequest, resp *fus
dir.wfs.cacheDelete(filer2.FullPath(dir.Path)) dir.wfs.cacheDelete(filer2.FullPath(dir.Path))
return dir.saveEntry(ctx)
return dir.saveEntry()
} }
@ -372,7 +372,7 @@ func (dir *Dir) Setxattr(ctx context.Context, req *fuse.SetxattrRequest) error {
dir.wfs.cacheDelete(filer2.FullPath(dir.Path)) dir.wfs.cacheDelete(filer2.FullPath(dir.Path))
return dir.saveEntry(ctx)
return dir.saveEntry()
} }
@ -390,7 +390,7 @@ func (dir *Dir) Removexattr(ctx context.Context, req *fuse.RemovexattrRequest) e
dir.wfs.cacheDelete(filer2.FullPath(dir.Path)) dir.wfs.cacheDelete(filer2.FullPath(dir.Path))
return dir.saveEntry(ctx)
return dir.saveEntry()
} }
@ -428,7 +428,7 @@ func (dir *Dir) maybeLoadEntry() error {
return nil return nil
} }
func (dir *Dir) saveEntry(ctx context.Context) error {
func (dir *Dir) saveEntry() error {
parentDir, name := filer2.FullPath(dir.Path).DirAndName() parentDir, name := filer2.FullPath(dir.Path).DirAndName()

Loading…
Cancel
Save