Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go-fuse
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go-fuse
Commits
55831d20
Commit
55831d20
authored
Sep 07, 2011
by
Han-Wen Nienhuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Inode.Live().
parent
84b2ec1f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
fuse/fsconnector.go
fuse/fsconnector.go
+1
-1
fuse/inode.go
fuse/inode.go
+4
-0
No files found.
fuse/fsconnector.go
View file @
55831d20
...
@@ -142,7 +142,7 @@ func (me *FileSystemConnector) considerDropInode(n *Inode) (drop bool) {
...
@@ -142,7 +142,7 @@ func (me *FileSystemConnector) considerDropInode(n *Inode) (drop bool) {
me
.
inodeMap
.
Forget
(
ch
.
nodeId
)
me
.
inodeMap
.
Forget
(
ch
.
nodeId
)
}
}
if
len
(
n
.
children
)
>
0
||
n
.
lookupCount
>
0
{
if
len
(
n
.
children
)
>
0
||
n
.
Live
()
{
return
false
return
false
}
}
if
n
==
me
.
rootNode
||
n
.
mountPoint
!=
nil
{
if
n
==
me
.
rootNode
||
n
.
mountPoint
!=
nil
{
...
...
fuse/inode.go
View file @
55831d20
...
@@ -59,6 +59,10 @@ func (me *Inode) LockTree() func() {
...
@@ -59,6 +59,10 @@ func (me *Inode) LockTree() func() {
return
func
()
{
me
.
treeLock
.
Unlock
()
}
return
func
()
{
me
.
treeLock
.
Unlock
()
}
}
}
func
(
me
*
Inode
)
Live
()
bool
{
return
me
.
lookupCount
>
0
}
// Returns any open file, preferably a r/w one.
// Returns any open file, preferably a r/w one.
func
(
me
*
Inode
)
AnyFile
()
(
file
File
)
{
func
(
me
*
Inode
)
AnyFile
()
(
file
File
)
{
me
.
openFilesMutex
.
Lock
()
me
.
openFilesMutex
.
Lock
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment