mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
mount: fix new inode allocation (#3633)
This commit is contained in:
parent
41af5a6ee5
commit
10d545060f
|
@ -80,7 +80,7 @@ func (i *InodeToPath) Lookup(path util.FullPath, unixTime int64, isDirectory boo
|
||||||
}
|
}
|
||||||
if !isHardlink {
|
if !isHardlink {
|
||||||
for _, found := i.inode2path[inode]; found; inode++ {
|
for _, found := i.inode2path[inode]; found; inode++ {
|
||||||
_, found = i.inode2path[inode]
|
_, found = i.inode2path[inode+1]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue