Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jacobsa-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
jacobsa-fuse
Commits
3103bb22
Commit
3103bb22
authored
Jun 22, 2015
by
Aaron Jacobs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated samples.
parent
e59720bf
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
29 deletions
+0
-29
samples/cachingfs/caching_fs.go
samples/cachingfs/caching_fs.go
+0
-5
samples/flushfs/flush_fs.go
samples/flushfs/flush_fs.go
+0
-5
samples/forgetfs/forget_fs.go
samples/forgetfs/forget_fs.go
+0
-5
samples/hellofs/hello_fs.go
samples/hellofs/hello_fs.go
+0
-4
samples/interruptfs/interrupt_fs.go
samples/interruptfs/interrupt_fs.go
+0
-5
samples/memfs/memfs.go
samples/memfs/memfs.go
+0
-5
No files found.
samples/cachingfs/caching_fs.go
View file @
3103bb22
...
...
@@ -238,11 +238,6 @@ func (fs *cachingFS) SetMtime(mtime time.Time) {
// FileSystem methods
////////////////////////////////////////////////////////////////////////
func
(
fs
*
cachingFS
)
Init
(
op
*
fuseops
.
InitOp
)
(
err
error
)
{
return
}
// LOCKS_EXCLUDED(fs.mu)
func
(
fs
*
cachingFS
)
LookUpInode
(
op
*
fuseops
.
LookUpInodeOp
)
(
err
error
)
{
...
...
samples/flushfs/flush_fs.go
View file @
3103bb22
...
...
@@ -92,11 +92,6 @@ func (fs *flushFS) barAttributes() fuseops.InodeAttributes {
// FileSystem methods
////////////////////////////////////////////////////////////////////////
func
(
fs
*
flushFS
)
Init
(
op
*
fuseops
.
InitOp
)
(
err
error
)
{
return
}
func
(
fs
*
flushFS
)
LookUpInode
(
op
*
fuseops
.
LookUpInodeOp
)
(
err
error
)
{
fs
.
mu
.
Lock
()
...
...
samples/forgetfs/forget_fs.go
View file @
3103bb22
...
...
@@ -222,11 +222,6 @@ func (fs *fsImpl) findInodeByID(id fuseops.InodeID) (in *inode) {
// FileSystem methods
////////////////////////////////////////////////////////////////////////
func
(
fs
*
fsImpl
)
Init
(
op
*
fuseops
.
InitOp
)
(
err
error
)
{
return
}
func
(
fs
*
fsImpl
)
LookUpInode
(
op
*
fuseops
.
LookUpInodeOp
)
(
err
error
)
{
fs
.
mu
.
Lock
()
...
...
samples/hellofs/hello_fs.go
View file @
3103bb22
...
...
@@ -147,10 +147,6 @@ func (fs *helloFS) patchAttributes(
attr
.
Crtime
=
now
}
func
(
fs
*
helloFS
)
Init
(
op
*
fuseops
.
InitOp
)
(
err
error
)
{
return
}
func
(
fs
*
helloFS
)
LookUpInode
(
op
*
fuseops
.
LookUpInodeOp
)
(
err
error
)
{
// Find the info for the parent.
parentInfo
,
ok
:=
gInodeInfo
[
op
.
Parent
]
...
...
samples/interruptfs/interrupt_fs.go
View file @
3103bb22
...
...
@@ -77,11 +77,6 @@ func (fs *InterruptFS) WaitForReadInFlight() {
// FileSystem methods
////////////////////////////////////////////////////////////////////////
func
(
fs
*
InterruptFS
)
Init
(
op
*
fuseops
.
InitOp
)
(
err
error
)
{
return
}
func
(
fs
*
InterruptFS
)
LookUpInode
(
op
*
fuseops
.
LookUpInodeOp
)
(
err
error
)
{
// We support only one parent.
...
...
samples/memfs/memfs.go
View file @
3103bb22
...
...
@@ -199,11 +199,6 @@ func (fs *memFS) deallocateInode(id fuseops.InodeID) {
// FileSystem methods
////////////////////////////////////////////////////////////////////////
func
(
fs
*
memFS
)
Init
(
op
*
fuseops
.
InitOp
)
(
err
error
)
{
return
}
func
(
fs
*
memFS
)
LookUpInode
(
op
*
fuseops
.
LookUpInodeOp
)
(
err
error
)
{
fs
.
mu
.
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