diff options
| author | Jakob Unterwurzacher | 2018-07-04 09:04:00 +0200 | 
|---|---|---|
| committer | Jakob Unterwurzacher | 2018-07-04 09:04:00 +0200 | 
| commit | 53f7e1a0f02c44d19b8cda178daebe0aa466f352 (patch) | |
| tree | 61d1344325da2b16c40f74db579d3ea47a47d5b8 /internal/fusefrontend | |
| parent | f6a3e2c7d1ab41028ea749017e64cb980c52096c (diff) | |
macos: fix O_DIRECT build failure
O_DIRECT has no direct equivalent on MacOS
(check out https://github.com/libuv/libuv/issues/1600 for details).
Just define it to zero there.
Diffstat (limited to 'internal/fusefrontend')
| -rw-r--r-- | internal/fusefrontend/fs.go | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/internal/fusefrontend/fs.go b/internal/fusefrontend/fs.go index 2cdc362..23f5513 100644 --- a/internal/fusefrontend/fs.go +++ b/internal/fusefrontend/fs.go @@ -105,7 +105,7 @@ func (fs *FS) mangleOpenFlags(flags uint32) (newFlags int) {  	// crypto header, alignment will be off, even if userspace makes aligned  	// accesses. Running xfstests generic/013 on ext4 used to trigger lots of  	// EINVAL errors due to missing alignment. Just fall back to buffered IO. -	newFlags = newFlags &^ syscall.O_DIRECT +	newFlags = newFlags &^ syscallcompat.O_DIRECT  	return newFlags  } | 
