nfsd: use RWF_SYNC
Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
e864f39569
commit
24368aad47
@ -935,8 +935,8 @@ nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
|
|||||||
int stable = *stablep;
|
int stable = *stablep;
|
||||||
int use_wgather;
|
int use_wgather;
|
||||||
loff_t pos = offset;
|
loff_t pos = offset;
|
||||||
loff_t end = LLONG_MAX;
|
|
||||||
unsigned int pflags = current->flags;
|
unsigned int pflags = current->flags;
|
||||||
|
int flags = 0;
|
||||||
|
|
||||||
if (test_bit(RQ_LOCAL, &rqstp->rq_flags))
|
if (test_bit(RQ_LOCAL, &rqstp->rq_flags))
|
||||||
/*
|
/*
|
||||||
@ -955,9 +955,12 @@ nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
|
|||||||
if (!EX_ISSYNC(exp))
|
if (!EX_ISSYNC(exp))
|
||||||
stable = 0;
|
stable = 0;
|
||||||
|
|
||||||
|
if (stable && !use_wgather)
|
||||||
|
flags |= RWF_SYNC;
|
||||||
|
|
||||||
/* Write the data. */
|
/* Write the data. */
|
||||||
oldfs = get_fs(); set_fs(KERNEL_DS);
|
oldfs = get_fs(); set_fs(KERNEL_DS);
|
||||||
host_err = vfs_writev(file, (struct iovec __user *)vec, vlen, &pos, 0);
|
host_err = vfs_writev(file, (struct iovec __user *)vec, vlen, &pos, flags);
|
||||||
set_fs(oldfs);
|
set_fs(oldfs);
|
||||||
if (host_err < 0)
|
if (host_err < 0)
|
||||||
goto out_nfserr;
|
goto out_nfserr;
|
||||||
@ -965,15 +968,8 @@ nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
|
|||||||
nfsdstats.io_write += host_err;
|
nfsdstats.io_write += host_err;
|
||||||
fsnotify_modify(file);
|
fsnotify_modify(file);
|
||||||
|
|
||||||
if (stable) {
|
if (stable && use_wgather)
|
||||||
if (use_wgather) {
|
host_err = wait_for_concurrent_writes(file);
|
||||||
host_err = wait_for_concurrent_writes(file);
|
|
||||||
} else {
|
|
||||||
if (*cnt)
|
|
||||||
end = offset + *cnt - 1;
|
|
||||||
host_err = vfs_fsync_range(file, offset, end, 0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
out_nfserr:
|
out_nfserr:
|
||||||
dprintk("nfsd: write complete host_err=%d\n", host_err);
|
dprintk("nfsd: write complete host_err=%d\n", host_err);
|
||||||
|
Loading…
Reference in New Issue
Block a user