aboutsummaryrefslogtreecommitdiff
path: root/weed/mount/weedfs_dir_read.go
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2024-08-07 10:41:58 -0700
committerchrislu <chris.lu@gmail.com>2024-08-07 10:42:00 -0700
commit57dc39c4516e5f42e77164babfdcfd84be2d0d2d (patch)
treec62ee8f6a2d3bbd4cd16769240abe6184c9ae530 /weed/mount/weedfs_dir_read.go
parent3e6ca6e7065a84f1a0a2a142358ac0c2fc0e9b48 (diff)
downloadseaweedfs-57dc39c4516e5f42e77164babfdcfd84be2d0d2d.tar.xz
seaweedfs-57dc39c4516e5f42e77164babfdcfd84be2d0d2d.zip
randomizing next file handle id
Diffstat (limited to 'weed/mount/weedfs_dir_read.go')
-rw-r--r--weed/mount/weedfs_dir_read.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/weed/mount/weedfs_dir_read.go b/weed/mount/weedfs_dir_read.go
index 02ed72431..26e523a43 100644
--- a/weed/mount/weedfs_dir_read.go
+++ b/weed/mount/weedfs_dir_read.go
@@ -6,6 +6,7 @@ import (
"github.com/seaweedfs/seaweedfs/weed/filer"
"github.com/seaweedfs/seaweedfs/weed/glog"
"github.com/seaweedfs/seaweedfs/weed/mount/meta_cache"
+ "github.com/seaweedfs/seaweedfs/weed/util"
"math"
"sync"
)
@@ -45,7 +46,7 @@ func NewDirectoryHandleToInode() *DirectoryHandleToInode {
func (wfs *WFS) AcquireDirectoryHandle() (DirectoryHandleId, *DirectoryHandle) {
wfs.fhmap.Lock()
fh := wfs.fhmap.nextFh
- wfs.fhmap.nextFh++
+ wfs.fhmap.nextFh = FileHandleId(util.RandomUint64())
wfs.fhmap.Unlock()
wfs.dhmap.Lock()