diff options
Diffstat (limited to 'fs/nfsd/vfs.c')
| -rw-r--r-- | fs/nfsd/vfs.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c index 7c2e337d05af..c194793b642b 100644 --- a/fs/nfsd/vfs.c +++ b/fs/nfsd/vfs.c | |||
| @@ -780,12 +780,9 @@ static inline int nfsd_dosync(struct file *filp, struct dentry *dp, | |||
| 780 | int (*fsync) (struct file *, struct dentry *, int); | 780 | int (*fsync) (struct file *, struct dentry *, int); |
| 781 | int err; | 781 | int err; |
| 782 | 782 | ||
| 783 | err = filemap_fdatawrite(inode->i_mapping); | 783 | err = filemap_write_and_wait(inode->i_mapping); |
| 784 | if (err == 0 && fop && (fsync = fop->fsync)) | 784 | if (err == 0 && fop && (fsync = fop->fsync)) |
| 785 | err = fsync(filp, dp, 0); | 785 | err = fsync(filp, dp, 0); |
| 786 | if (err == 0) | ||
| 787 | err = filemap_fdatawait(inode->i_mapping); | ||
| 788 | |||
| 789 | return err; | 786 | return err; |
| 790 | } | 787 | } |
| 791 | 788 | ||
