diff options
author | Jeff Layton <jlayton@redhat.com> | 2017-04-12 08:06:02 -0400 |
---|---|---|
committer | Mike Marshall <hubcap@omnibond.com> | 2017-09-14 14:58:28 -0400 |
commit | 49e5571324a81ddbb0d06ff38f698534a2a47e33 (patch) | |
tree | 5dee4051040c23cc6839061695a0ad431ee8f7a3 /fs | |
parent | 5f13e58767a53ebb54265e03c0c4a67650286263 (diff) | |
download | blackbird-obmc-linux-49e5571324a81ddbb0d06ff38f698534a2a47e33.tar.gz blackbird-obmc-linux-49e5571324a81ddbb0d06ff38f698534a2a47e33.zip |
orangefs: don't call filemap_write_and_wait from fsync
Orangefs doesn't do buffered writes yet, so there's no point in
initiating and waiting for writeback.
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/orangefs/file.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/fs/orangefs/file.c b/fs/orangefs/file.c index 28f38d813ad2..336ecbf8c268 100644 --- a/fs/orangefs/file.c +++ b/fs/orangefs/file.c @@ -646,14 +646,11 @@ static int orangefs_fsync(struct file *file, loff_t end, int datasync) { - int ret = -EINVAL; + int ret; struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(file_inode(file)); struct orangefs_kernel_op_s *new_op = NULL; - /* required call */ - filemap_write_and_wait_range(file->f_mapping, start, end); - new_op = op_alloc(ORANGEFS_VFS_OP_FSYNC); if (!new_op) return -ENOMEM; |