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
6d9ae31b
Commit
6d9ae31b
authored
Mar 12, 2019
by
Han-Wen Nienhuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fuse: add opcode and types for copyfilerange and lseek
add MaxPages to InitOut
parent
34f8ad4a
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
141 additions
and
108 deletions
+141
-108
fuse/opcode.go
fuse/opcode.go
+117
-107
fuse/types.go
fuse/types.go
+24
-1
No files found.
fuse/opcode.go
View file @
6d9ae31b
This diff is collapsed.
Click to expand it.
fuse/types.go
View file @
6d9ae31b
...
...
@@ -305,7 +305,9 @@ type InitOut struct {
CongestionThreshold
uint16
MaxWrite
uint32
TimeGran
uint32
Unused
[
9
]
uint32
MaxPages
uint16
Padding
uint16
Unused
[
8
]
uint32
}
type
_CuseInitIn
struct
{
...
...
@@ -504,6 +506,27 @@ type FlushIn struct {
LockOwner
uint64
}
type
LseekIn
struct
{
Fh
uint64
Offset
uint64
Whence
uint32
Padding
uint32
}
type
LseekOut
struct
{
Offset
uint64
}
type
CopyFileRangeIn
struct
{
FhIn
uint64
OffIn
uint64
NodeIdOut
uint64
FhOut
uint64
OffOut
uint64
Len
uint64
Flags
uint64
}
type
EntryOut
struct
{
NodeId
uint64
Generation
uint64
...
...
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