diff options
Diffstat (limited to 'fs/nfsd/vfs.c')
-rw-r--r-- | fs/nfsd/vfs.c | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c index af7c3c3074b0..f83ab4cf4265 100644 --- a/fs/nfsd/vfs.c +++ b/fs/nfsd/vfs.c | |||
@@ -717,27 +717,33 @@ nfsd_close(struct file *filp) | |||
717 | * As this calls fsync (not fdatasync) there is no need for a write_inode | 717 | * As this calls fsync (not fdatasync) there is no need for a write_inode |
718 | * after it. | 718 | * after it. |
719 | */ | 719 | */ |
720 | static inline void nfsd_dosync(struct file *filp, struct dentry *dp, | 720 | static inline int nfsd_dosync(struct file *filp, struct dentry *dp, |
721 | struct file_operations *fop) | 721 | struct file_operations *fop) |
722 | { | 722 | { |
723 | struct inode *inode = dp->d_inode; | 723 | struct inode *inode = dp->d_inode; |
724 | int (*fsync) (struct file *, struct dentry *, int); | 724 | int (*fsync) (struct file *, struct dentry *, int); |
725 | int err = nfs_ok; | ||
725 | 726 | ||
726 | filemap_fdatawrite(inode->i_mapping); | 727 | filemap_fdatawrite(inode->i_mapping); |
727 | if (fop && (fsync = fop->fsync)) | 728 | if (fop && (fsync = fop->fsync)) |
728 | fsync(filp, dp, 0); | 729 | err=fsync(filp, dp, 0); |
729 | filemap_fdatawait(inode->i_mapping); | 730 | filemap_fdatawait(inode->i_mapping); |
731 | |||
732 | return nfserrno(err); | ||
730 | } | 733 | } |
731 | 734 | ||
732 | 735 | ||
733 | static void | 736 | static int |
734 | nfsd_sync(struct file *filp) | 737 | nfsd_sync(struct file *filp) |
735 | { | 738 | { |
739 | int err; | ||
736 | struct inode *inode = filp->f_dentry->d_inode; | 740 | struct inode *inode = filp->f_dentry->d_inode; |
737 | dprintk("nfsd: sync file %s\n", filp->f_dentry->d_name.name); | 741 | dprintk("nfsd: sync file %s\n", filp->f_dentry->d_name.name); |
738 | down(&inode->i_sem); | 742 | down(&inode->i_sem); |
739 | nfsd_dosync(filp, filp->f_dentry, filp->f_op); | 743 | err=nfsd_dosync(filp, filp->f_dentry, filp->f_op); |
740 | up(&inode->i_sem); | 744 | up(&inode->i_sem); |
745 | |||
746 | return err; | ||
741 | } | 747 | } |
742 | 748 | ||
743 | void | 749 | void |
@@ -962,7 +968,7 @@ nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file, | |||
962 | 968 | ||
963 | if (inode->i_state & I_DIRTY) { | 969 | if (inode->i_state & I_DIRTY) { |
964 | dprintk("nfsd: write sync %d\n", current->pid); | 970 | dprintk("nfsd: write sync %d\n", current->pid); |
965 | nfsd_sync(file); | 971 | err=nfsd_sync(file); |
966 | } | 972 | } |
967 | #if 0 | 973 | #if 0 |
968 | wake_up(&inode->i_wait); | 974 | wake_up(&inode->i_wait); |
@@ -1066,7 +1072,7 @@ nfsd_commit(struct svc_rqst *rqstp, struct svc_fh *fhp, | |||
1066 | return err; | 1072 | return err; |
1067 | if (EX_ISSYNC(fhp->fh_export)) { | 1073 | if (EX_ISSYNC(fhp->fh_export)) { |
1068 | if (file->f_op && file->f_op->fsync) { | 1074 | if (file->f_op && file->f_op->fsync) { |
1069 | nfsd_sync(file); | 1075 | err = nfsd_sync(file); |
1070 | } else { | 1076 | } else { |
1071 | err = nfserr_notsupp; | 1077 | err = nfserr_notsupp; |
1072 | } | 1078 | } |