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
25d1f10b
Commit
25d1f10b
authored
May 19, 2012
by
Han-Wen Nienhuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid byte/string conversion in direntry.go.
parent
baaeff99
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
7 deletions
+3
-7
fuse/direntry.go
fuse/direntry.go
+3
-7
No files found.
fuse/direntry.go
View file @
25d1f10b
...
@@ -34,15 +34,11 @@ func NewDirEntryList(data []byte, off uint64) *DirEntryList {
...
@@ -34,15 +34,11 @@ func NewDirEntryList(data []byte, off uint64) *DirEntryList {
}
}
}
}
func
(
l
*
DirEntryList
)
AddString
(
name
string
,
inode
uint64
,
mode
uint32
)
bool
{
return
l
.
Add
([]
byte
(
name
),
inode
,
mode
)
}
func
(
l
*
DirEntryList
)
AddDirEntry
(
e
DirEntry
)
bool
{
func
(
l
*
DirEntryList
)
AddDirEntry
(
e
DirEntry
)
bool
{
return
l
.
Add
(
[]
byte
(
e
.
Name
)
,
uint64
(
raw
.
FUSE_UNKNOWN_INO
),
e
.
Mode
)
return
l
.
Add
(
e
.
Name
,
uint64
(
raw
.
FUSE_UNKNOWN_INO
),
e
.
Mode
)
}
}
func
(
l
*
DirEntryList
)
Add
(
name
[]
byte
,
inode
uint64
,
mode
uint32
)
bool
{
func
(
l
*
DirEntryList
)
Add
(
name
string
,
inode
uint64
,
mode
uint32
)
bool
{
dirent
:=
raw
.
Dirent
{
dirent
:=
raw
.
Dirent
{
Off
:
l
.
offset
+
1
,
Off
:
l
.
offset
+
1
,
Ino
:
inode
,
Ino
:
inode
,
...
@@ -64,7 +60,7 @@ func (l *DirEntryList) Add(name []byte, inode uint64, mode uint32) bool {
...
@@ -64,7 +60,7 @@ func (l *DirEntryList) Add(name []byte, inode uint64, mode uint32) bool {
if
err
!=
nil
{
if
err
!=
nil
{
panic
(
"Serialization of Dirent failed"
)
panic
(
"Serialization of Dirent failed"
)
}
}
l
.
buf
.
Write
(
name
)
l
.
buf
.
Write
String
(
name
)
if
padding
>
0
{
if
padding
>
0
{
l
.
buf
.
Write
(
eightPadding
[
:
padding
])
l
.
buf
.
Write
(
eightPadding
[
:
padding
])
}
}
...
...
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