libgocryptfs/internal/syscallcompat
Jakob Unterwurzacher 26ba8103bf syscallcompat: switch from syscall.Getdents to unix.Getdents
On mips64le, syscall.Getdents() and struct syscall.Dirent do
not fit together, causing our Getdents implementation to
return garbage ( https://github.com/rfjakob/gocryptfs/issues/200
and https://github.com/golang/go/issues/23624 ).

Switch to unix.Getdents which does not have this problem -
the next Go release with the syscall package fixes is too
far away, and will take time to trickle into distros.
2018-01-31 18:59:10 +01:00
..
emulate.go syscallcompat: add Fstatat + emulation + test 2017-12-03 19:32:59 +01:00
emulate_test.go syscallcompat: add Fstatat + emulation + test 2017-12-03 19:32:59 +01:00
getdents_linux.go syscallcompat: switch from syscall.Getdents to unix.Getdents 2018-01-31 18:59:10 +01:00
getdents_other.go syscallcompat: convert Getdents to fd input, add emulation 2017-12-03 19:33:26 +01:00
getdents_test.go syscallcompat: convert Getdents to fd input, add emulation 2017-12-03 19:33:26 +01:00
main_test.go syscallcompat: move test setup into its own file 2017-12-02 19:57:23 +01:00
open_nofollow.go syscallcompat: OpenNofollow: use O_DIRECTORY flag 2017-12-05 23:31:07 +01:00
open_nofollow_test.go syscallcompat: OpenNofollow: use O_DIRECTORY flag 2017-12-05 23:31:07 +01:00
sys_common.go fusefrontend: Use Linkat syscall to implement Link 2017-12-25 15:07:37 +01:00
sys_common_test.go syscallcompat: add Readlinkat 2017-12-06 21:07:24 +01:00
sys_darwin.go syscallcompat: add Fstatat + emulation + test 2017-12-03 19:32:59 +01:00
sys_linux.go syscallcompat: convert Getdents to fd input, add emulation 2017-12-03 19:33:26 +01:00
unix2syscall_darwin.go syscallcompat: add Darwin version of unix2syscall 2017-12-06 00:18:38 +01:00
unix2syscall_linux.go syscallcompat: add Darwin version of unix2syscall 2017-12-06 00:18:38 +01:00