summaryrefslogtreecommitdiffstats
path: root/xlators/performance/read-ahead/src/read-ahead.c
diff options
context:
space:
mode:
Diffstat (limited to 'xlators/performance/read-ahead/src/read-ahead.c')
-rw-r--r--xlators/performance/read-ahead/src/read-ahead.c4
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 b2703ad8d46..c24565d8d28 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;