diff options
author | Raghavendra G <raghavendra@zresearch.com> | 2009-07-07 02:33:31 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2009-07-07 16:24:52 -0700 |
commit | 4e9757859750eb3625828f83681845f1352af356 (patch) | |
tree | 6260444b637fc163f14268fa646d2c43bc08f36c | |
parent | ecc844dc15fffacaf37916e4570e520534f2545c (diff) |
read-ahead: use O_ACCMODE for checking file access modes.
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
-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 c4052e54c..49cf0b9bf 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; |