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
de289915
Commit
de289915
authored
Jul 25, 2013
by
Han-Wen Nienhuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fuse: debug printing for RenameIn.
parent
1adf79ce
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
fuse/opcode.go
fuse/opcode.go
+1
-0
fuse/print.go
fuse/print.go
+4
-0
No files found.
fuse/opcode.go
View file @
de289915
...
@@ -585,6 +585,7 @@ func init() {
...
@@ -585,6 +585,7 @@ func init() {
_OP_RELEASEDIR
:
func
(
ptr
unsafe
.
Pointer
)
interface
{}
{
return
(
*
ReleaseIn
)(
ptr
)
},
_OP_RELEASEDIR
:
func
(
ptr
unsafe
.
Pointer
)
interface
{}
{
return
(
*
ReleaseIn
)(
ptr
)
},
_OP_FALLOCATE
:
func
(
ptr
unsafe
.
Pointer
)
interface
{}
{
return
(
*
FallocateIn
)(
ptr
)
},
_OP_FALLOCATE
:
func
(
ptr
unsafe
.
Pointer
)
interface
{}
{
return
(
*
FallocateIn
)(
ptr
)
},
_OP_READDIRPLUS
:
func
(
ptr
unsafe
.
Pointer
)
interface
{}
{
return
(
*
ReadIn
)(
ptr
)
},
_OP_READDIRPLUS
:
func
(
ptr
unsafe
.
Pointer
)
interface
{}
{
return
(
*
ReadIn
)(
ptr
)
},
_OP_RENAME
:
func
(
ptr
unsafe
.
Pointer
)
interface
{}
{
return
(
*
RenameIn
)(
ptr
)
},
}
{
}
{
operationHandlers
[
op
]
.
DecodeIn
=
f
operationHandlers
[
op
]
.
DecodeIn
=
f
}
}
...
...
fuse/print.go
View file @
de289915
...
@@ -105,6 +105,10 @@ func (me *MknodIn) string() string {
...
@@ -105,6 +105,10 @@ func (me *MknodIn) string() string {
return
fmt
.
Sprintf
(
"{0%o (0%o), %d}"
,
me
.
Mode
,
me
.
Umask
,
me
.
Rdev
)
return
fmt
.
Sprintf
(
"{0%o (0%o), %d}"
,
me
.
Mode
,
me
.
Umask
,
me
.
Rdev
)
}
}
func
(
me
*
RenameIn
)
string
()
string
{
return
fmt
.
Sprintf
(
"{%d}"
,
me
.
Newdir
)
}
func
(
me
*
SetAttrIn
)
string
()
string
{
func
(
me
*
SetAttrIn
)
string
()
string
{
s
:=
[]
string
{}
s
:=
[]
string
{}
if
me
.
Valid
&
FATTR_MODE
!=
0
{
if
me
.
Valid
&
FATTR_MODE
!=
0
{
...
...
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