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
923cd7b1
Commit
923cd7b1
authored
Dec 17, 2015
by
Han-Wen Nienhuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Run gofmt.
parent
b1aee138
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
11 deletions
+10
-11
fuse/misc.go
fuse/misc.go
+2
-2
fuse/mount_linux.go
fuse/mount_linux.go
+3
-3
fuse/nodefs/syscall.go
fuse/nodefs/syscall.go
+1
-1
fuse/opcode.go
fuse/opcode.go
+2
-2
fuse/pathfs/syscall_linux.go
fuse/pathfs/syscall_linux.go
+0
-1
fuse/pathfs/syscall_test.go
fuse/pathfs/syscall_test.go
+2
-2
No files found.
fuse/misc.go
View file @
923cd7b1
fuse/mount_linux.go
View file @
923cd7b1
package
fuse
import
(
"path"
"bytes"
"fmt"
"os"
"os/exec"
"path"
"path/filepath"
"syscall"
"unsafe"
...
...
fuse/nodefs/syscall.go
View file @
923cd7b1
package
nodefs
import
(
"unsafe"
"syscall"
"unsafe"
)
// futimens - futimens(3) calls utimensat(2) with "pathname" set to null and
...
...
fuse/opcode.go
View file @
923cd7b1
fuse/pathfs/syscall_linux.go
View file @
923cd7b1
...
...
@@ -117,7 +117,6 @@ func sysSetxattr(path string, attr string, val []byte, flag int) error {
return
syscall
.
Setxattr
(
path
,
attr
,
val
,
flag
)
}
const
_AT_SYMLINK_NOFOLLOW
=
0x100
// Linux kernel syscall utimensat(2)
...
...
fuse/pathfs/syscall_test.go
View file @
923cd7b1
package
pathfs
import
(
"reflect"
"os"
"
testing
"
"
reflect
"
"syscall"
"testing"
)
func
TestSysUtimensat
(
t
*
testing
.
T
)
{
...
...
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