diff options
Diffstat (limited to 'xlators/performance/read-ahead')
-rw-r--r-- | xlators/performance/read-ahead/src/read-ahead.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xlators/performance/read-ahead/src/read-ahead.c b/xlators/performance/read-ahead/src/read-ahead.c index c4052e54c5b..49cf0b9bf5e 100644 --- a/xlators/performance/read-ahead/src/read-ahead.c +++ b/xlators/performance/read-ahead/src/read-ahead.c @@ -74,7 +74,7 @@ ra_open_cbk (call_frame_t *frame, void *cookie, xlator_t *this, /* If O_DIRECT open, we disable caching on it */ - if ((fd->flags & O_DIRECT) || (fd->flags & O_WRONLY)) + if ((fd->flags & O_DIRECT) || ((fd->flags & O_ACCMODE) == O_WRONLY)) file->disabled = 1; file->offset = (unsigned long long) 0; @@ -143,7 +143,7 @@ ra_create_cbk (call_frame_t *frame, void *cookie, xlator_t *this, /* If O_DIRECT open, we disable caching on it */ - if ((fd->flags & O_DIRECT) || (fd->flags & O_WRONLY)) + if ((fd->flags & O_DIRECT) || ((fd->flags & O_ACCMODE) == O_WRONLY)) file->disabled = 1; file->offset = (unsigned long long) 0; |