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
f3956ca1
Commit
f3956ca1
authored
Jul 24, 2015
by
Aaron Jacobs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some Linux build errors.
parent
23cab6ad
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
12 deletions
+12
-12
internal/fusekernel/fuse_kernel_linux.go
internal/fusekernel/fuse_kernel_linux.go
+11
-11
internal/fuseshim/unmount_linux.go
internal/fuseshim/unmount_linux.go
+1
-1
No files found.
internal/fusekernel/fuse_kernel_linux.go
View file @
f3956ca1
package
fuse
shim
package
fuse
kernel
import
"time"
type
a
ttr
struct
{
type
A
ttr
struct
{
Ino
uint64
Size
uint64
Blocks
uint64
...
...
@@ -21,31 +21,31 @@ type attr struct {
padding
uint32
}
func
(
a
*
a
ttr
)
Crtime
()
time
.
Time
{
func
(
a
*
A
ttr
)
Crtime
()
time
.
Time
{
return
time
.
Time
{}
}
func
(
a
*
a
ttr
)
SetCrtime
(
s
uint64
,
ns
uint32
)
{
func
(
a
*
A
ttr
)
SetCrtime
(
s
uint64
,
ns
uint32
)
{
// Ignored on Linux.
}
func
(
a
*
a
ttr
)
SetFlags
(
f
uint32
)
{
func
(
a
*
A
ttr
)
SetFlags
(
f
uint32
)
{
// Ignored on Linux.
}
type
s
etattrIn
struct
{
type
S
etattrIn
struct
{
setattrInCommon
}
func
(
in
*
s
etattrIn
)
BkupTime
()
time
.
Time
{
func
(
in
*
S
etattrIn
)
BkupTime
()
time
.
Time
{
return
time
.
Time
{}
}
func
(
in
*
s
etattrIn
)
Chgtime
()
time
.
Time
{
func
(
in
*
S
etattrIn
)
Chgtime
()
time
.
Time
{
return
time
.
Time
{}
}
func
(
in
*
s
etattrIn
)
Flags
()
uint32
{
func
(
in
*
S
etattrIn
)
Flags
()
uint32
{
return
0
}
...
...
@@ -61,10 +61,10 @@ func openFlags(flags uint32) OpenFlags {
return
OpenFlags
(
flags
)
}
type
g
etxattrIn
struct
{
type
G
etxattrIn
struct
{
getxattrInCommon
}
type
s
etxattrIn
struct
{
type
S
etxattrIn
struct
{
setxattrInCommon
}
internal/fuseshim/unmount_linux.go
View file @
f3956ca1
package
bazilfuse
package
fuseshim
import
(
"bytes"
...
...
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