fusego/samples/memfs
Ka-Hing Cheung e7bcad2083 fix getxattr and listxattr (#72)
previously, this will fail if /mnt/file doesn't have an xattr:

```
listxattr("/mnt/file", 0x7fe8b3686830, 256) = -1 EIO (Input/output error)
```

We should be returning the actual size only if the input size is
zero. Related issue is if the filesystem returns ERANGE, we should
propagate that error instead of returning the actual size.

Replaced go-xattr usage with x/sys/unix so we can test this.
2019-12-11 09:41:37 +01:00
..
inode.go add support for fallocate (#66) 2019-10-26 10:15:00 +02:00
memfs.go fix getxattr and listxattr (#72) 2019-12-11 09:41:37 +01:00
memfs_go18_test.go memfs_test: pass on Go 1.8 and above, too. 2016-12-19 15:07:56 +11:00
memfs_others_test.go memfs_test: pass on Go 1.8 and above, too. 2016-12-19 15:07:56 +11:00
memfs_test.go fix getxattr and listxattr (#72) 2019-12-11 09:41:37 +01:00
posix_test.go fix/skip tests for Go 1.13 2019-09-16 18:43:37 +02:00