diff options
author | Trond Myklebust <trond.myklebust@primarydata.com> | 2015-03-25 18:58:53 -0400 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@primarydata.com> | 2015-03-27 12:39:37 -0400 |
commit | a0815d556d1cfb686b46995f86fb081f623fa720 (patch) | |
tree | fd6edd1d18bc1a6633a7e968089d089dd4aec6cd /fs/nfs/file.c | |
parent | 9e1681c2e74bdd84bad6f74b47a4d88ad2f433df (diff) | |
download | blackbird-op-linux-a0815d556d1cfb686b46995f86fb081f623fa720.tar.gz blackbird-op-linux-a0815d556d1cfb686b46995f86fb081f623fa720.zip |
NFSv4.1/pnfs: Ensure that writes respect the O_SYNC flag when doing O_DIRECT
If the caller does not specify the O_SYNC flag, then it is legitimate
to return from O_DIRECT without doing a pNFS layoutcommit operation.
However if the file is opened O_DIRECT|O_SYNC then we'd better get it
right.
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Diffstat (limited to 'fs/nfs/file.c')
-rw-r--r-- | fs/nfs/file.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/nfs/file.c b/fs/nfs/file.c index 6959cb76744b..28228f381266 100644 --- a/fs/nfs/file.c +++ b/fs/nfs/file.c @@ -281,6 +281,7 @@ nfs_file_fsync(struct file *file, loff_t start, loff_t end, int datasync) trace_nfs_fsync_enter(inode); + nfs_inode_dio_wait(inode); do { ret = filemap_write_and_wait_range(inode->i_mapping, start, end); if (ret != 0) |