aboutsummaryrefslogtreecommitdiffstats
path: root/fs/orangefs/file.c
diff options
context:
space:
mode:
authorJeff Layton <jlayton@redhat.com>2017-04-12 08:06:02 -0400
committerMike Marshall <hubcap@omnibond.com>2017-09-14 14:58:28 -0400
commit49e5571324a81ddbb0d06ff38f698534a2a47e33 (patch)
tree5dee4051040c23cc6839061695a0ad431ee8f7a3 /fs/orangefs/file.c
parentorangefs: off by ones in xattr size checks (diff)
downloadlinux-dev-49e5571324a81ddbb0d06ff38f698534a2a47e33.tar.xz
linux-dev-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/orangefs/file.c')
-rw-r--r--fs/orangefs/file.c5
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;