Skip to content

Commit 2b69c16

Browse files
committed
sysx.Fchmodat(): remove
As of Go 1.10 (probably earlier) Fchmodat() is available from golang.org/x/sys/unix directly, so ditch custom implementations. This assumes there are no external users of github.com/containerd/continuity/sysx. If there are any, they should switch to golang.org/x/sys/unix. Signed-off-by: Kir Kolyshkin <[email protected]>
1 parent d2ce1bc commit 2b69c16

8 files changed

+2
-134
lines changed

driver/driver_unix.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import (
1111

1212
"github.com/containerd/continuity/devices"
1313
"github.com/containerd/continuity/sysx"
14+
"golang.org/x/sys/unix"
1415
)
1516

1617
func (d *driver) Mknod(path string, mode os.FileMode, major, minor int) error {
@@ -35,7 +36,7 @@ func (d *driver) Lchmod(path string, mode os.FileMode) (err error) {
3536
}
3637
}
3738

38-
return sysx.Fchmodat(0, path, uint32(mode), sysx.AtSymlinkNofollow)
39+
return unix.Fchmodat(0, path, uint32(mode), unix.AT_SYMLINK_NOFOLLOW)
3940
}
4041

4142
// Getxattr returns all of the extended attributes for the file at path p.

sysx/chmod_darwin.go

-18
This file was deleted.

sysx/chmod_darwin_386.go

-25
This file was deleted.

sysx/chmod_darwin_amd64.go

-25
This file was deleted.

sysx/chmod_freebsd.go

-17
This file was deleted.

sysx/chmod_freebsd_amd64.go

-25
This file was deleted.

sysx/chmod_linux.go

-12
This file was deleted.

sysx/chmod_solaris.go

-11
This file was deleted.

0 commit comments

Comments
 (0)