Darwin uses fcntl(fd, F_NOCACHE, 1) instead of the O_DIRECT flag.
Addresses-SourceForge-Bug: #
3140289
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
struct unix_private_data *data = NULL;
errcode_t retval;
int open_flags, zeroes = 0;
+ int f_nocache = 0;
ext2fs_struct_stat st;
#ifdef __linux__
struct utsname ut;
open_flags = (flags & IO_FLAG_RW) ? O_RDWR : O_RDONLY;
if (flags & IO_FLAG_EXCLUSIVE)
open_flags |= O_EXCL;
-#ifdef O_DIRECT
+#if defined(O_DIRECT)
if (flags & IO_FLAG_DIRECT_IO)
open_flags |= O_DIRECT;
+#elif defined(F_NOCACHE)
+ if (flags & IO_FLAG_DIRECT_IO)
+ f_nocache = F_NOCACHE;
#endif
data->flags = flags;
retval = errno;
goto cleanup;
}
+ if (f_nocache) {
+ if (fcntl(data->dev, f_nocache, 1) < 0) {
+ retval = errno;
+ goto cleanup;
+ }
+ }
/*
* If the device is really a block device, then set the