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
f516f166
Commit
f516f166
authored
Mar 23, 2019
by
Han-Wen Nienhuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fuse: print Lseek
parent
09e6b67a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
1 deletion
+17
-1
fuse/print.go
fuse/print.go
+17
-1
No files found.
fuse/print.go
View file @
f516f166
...
@@ -82,7 +82,6 @@ func init() {
...
@@ -82,7 +82,6 @@ func init() {
W_OK
:
"w"
,
W_OK
:
"w"
,
R_OK
:
"r"
,
R_OK
:
"r"
,
}
}
}
}
func
FlagString
(
names
map
[
int64
]
string
,
fl
int64
,
def
string
)
string
{
func
FlagString
(
names
map
[
int64
]
string
,
fl
int64
,
def
string
)
string
{
...
@@ -282,6 +281,23 @@ func (in *InterruptIn) string() string {
...
@@ -282,6 +281,23 @@ func (in *InterruptIn) string() string {
return
fmt
.
Sprintf
(
"{ix %d}"
,
in
.
Unique
)
return
fmt
.
Sprintf
(
"{ix %d}"
,
in
.
Unique
)
}
}
var
seekNames
=
map
[
uint32
]
string
{
0
:
"SET"
,
1
:
"CUR"
,
2
:
"END"
,
3
:
"DATA"
,
4
:
"HOLE"
,
}
func
(
in
*
LseekIn
)
string
()
string
{
return
fmt
.
Sprintf
(
"{Fh %d [%s +%d)}"
,
in
.
Fh
,
seekNames
[
in
.
Whence
],
in
.
Offset
)
}
func
(
o
*
LseekOut
)
string
()
string
{
return
fmt
.
Sprintf
(
"{%d}"
,
o
.
Offset
)
}
// Print pretty prints FUSE data types for kernel communication
// Print pretty prints FUSE data types for kernel communication
func
Print
(
obj
interface
{})
string
{
func
Print
(
obj
interface
{})
string
{
t
,
ok
:=
obj
.
(
interface
{
t
,
ok
:=
obj
.
(
interface
{
...
...
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