aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--weed/mount/weedfs_file_copy_range.go8
1 files changed, 2 insertions, 6 deletions
diff --git a/weed/mount/weedfs_file_copy_range.go b/weed/mount/weedfs_file_copy_range.go
index e3f841b02..49bab17f3 100644
--- a/weed/mount/weedfs_file_copy_range.go
+++ b/weed/mount/weedfs_file_copy_range.go
@@ -46,18 +46,14 @@ func (wfs *WFS) CopyFileRange(cancel <-chan struct{}, in *fuse.CopyFileRangeIn)
// lock source and target file handles
fhOut.Lock()
defer fhOut.Unlock()
- fhOut.entryLock.Lock()
- defer fhOut.entryLock.Unlock()
if fhOut.entry == nil {
return 0, fuse.ENOENT
}
if fhIn.fh != fhOut.fh {
- fhIn.Lock()
- defer fhIn.Unlock()
- fhIn.entryLock.Lock()
- defer fhIn.entryLock.Unlock()
+ fhIn.RLock()
+ defer fhIn.RUnlock()
}
// directories are not supported