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
b0a4566c
Commit
b0a4566c
authored
Aug 11, 2015
by
Aaron Jacobs
Browse files
Options
Browse Files
Download
Plain Diff
Fixed flushfs for writback caching.
parents
373004db
e69b8a8c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
43 additions
and
14 deletions
+43
-14
samples/flushfs/flush_fs.go
samples/flushfs/flush_fs.go
+34
-14
samples/flushfs/flush_fs_test.go
samples/flushfs/flush_fs_test.go
+9
-0
No files found.
samples/flushfs/flush_fs.go
View file @
b0a4566c
...
...
@@ -90,6 +90,29 @@ func (fs *flushFS) barAttributes() fuseops.InodeAttributes {
}
}
// LOCKS_REQUIRED(fs.mu)
func
(
fs
*
flushFS
)
getAttributes
(
id
fuseops
.
InodeID
)
(
attrs
fuseops
.
InodeAttributes
,
err
error
)
{
switch
id
{
case
fuseops
.
RootInodeID
:
attrs
=
fs
.
rootAttributes
()
return
case
fooID
:
attrs
=
fs
.
fooAttributes
()
return
case
barID
:
attrs
=
fs
.
barAttributes
()
return
default
:
err
=
fuse
.
ENOENT
return
}
}
////////////////////////////////////////////////////////////////////////
// FileSystem methods
////////////////////////////////////////////////////////////////////////
...
...
@@ -134,23 +157,20 @@ func (fs *flushFS) GetInodeAttributes(
fs
.
mu
.
Lock
()
defer
fs
.
mu
.
Unlock
()
switch
op
.
Inode
{
case
fuseops
.
RootInodeID
:
op
.
Attributes
=
fs
.
rootAttributes
()
op
.
Attributes
,
err
=
fs
.
getAttributes
(
op
.
Inode
)
return
}
case
fooID
:
op
.
Attributes
=
fs
.
fooAttributes
()
return
func
(
fs
*
flushFS
)
SetInodeAttributes
(
ctx
context
.
Context
,
op
*
fuseops
.
SetInodeAttributesOp
)
(
err
error
)
{
fs
.
mu
.
Lock
()
defer
fs
.
mu
.
Unlock
()
case
barID
:
op
.
Attributes
=
fs
.
barAttributes
()
return
// Ignore any changes and simply return existing attributes.
op
.
Attributes
,
err
=
fs
.
getAttributes
(
op
.
Inode
)
default
:
err
=
fuse
.
ENOENT
return
}
}
func
(
fs
*
flushFS
)
OpenFile
(
...
...
samples/flushfs/flush_fs_test.go
View file @
b0a4566c
...
...
@@ -590,6 +590,8 @@ func (t *NoErrorsTest) Mmap_NoMsync_MunmapBeforeClose() {
syscall
.
MAP_SHARED
)
AssertEq
(
nil
,
err
)
defer
syscall
.
Munmap
(
data
)
AssertEq
(
"taco"
,
string
(
data
))
// Modify the contents.
...
...
@@ -638,6 +640,8 @@ func (t *NoErrorsTest) Mmap_NoMsync_CloseBeforeMunmap() {
syscall
.
MAP_SHARED
)
AssertEq
(
nil
,
err
)
defer
syscall
.
Munmap
(
data
)
AssertEq
(
"taco"
,
string
(
data
))
// Close the file. We should see a flush.
...
...
@@ -682,6 +686,8 @@ func (t *NoErrorsTest) Mmap_WithMsync_MunmapBeforeClose() {
syscall
.
MAP_SHARED
)
AssertEq
(
nil
,
err
)
defer
syscall
.
Munmap
(
data
)
AssertEq
(
"taco"
,
string
(
data
))
// Modify the contents.
...
...
@@ -738,6 +744,8 @@ func (t *NoErrorsTest) Mmap_WithMsync_CloseBeforeMunmap() {
syscall
.
MAP_SHARED
)
AssertEq
(
nil
,
err
)
defer
syscall
.
Munmap
(
data
)
AssertEq
(
"taco"
,
string
(
data
))
// Close the file. We should see a flush.
...
...
@@ -941,6 +949,7 @@ func (t *FsyncErrorTest) Msync() {
syscall
.
MAP_SHARED
)
AssertEq
(
nil
,
err
)
defer
syscall
.
Munmap
(
data
)
// msync the mapping.
err
=
msync
(
data
)
...
...
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