From: "J. Bruce Fields" <bfields@fieldses.org>
To: "Smirnov, Alexander" <AlSmirnov-WEWivvub1mjQT0dZR+AlfA@public.gmane.org>
Cc: "linux-nfs@vger.kernel.org" <linux-nfs@vger.kernel.org>
Subject: Re: NFSD for 2.6.30.rc7 problem
Date: Wed, 27 May 2009 15:11:43 -0400 [thread overview]
Message-ID: <20090527191143.GY18028@fieldses.org> (raw)
In-Reply-To: <1CB6CF624D80D146921DF8431FF3D134A6B1ACEE48-/Q0dMsjZvzKLvz4rXgwZVQ@public.gmane.org>
On Wed, May 27, 2009 at 02:32:47PM +0400, Smirnov, Alexander wrote:
> Hello everybody,
>
> During test of NFS software I've found the problem in Linux kernel (nfsd)
>
> On the NFS4_WRITE request (data len=44), NFS server is responding with NFS4_OK (bytes written count = 0) that follows to
> cycliing in write request on client side.
Your problem looks the same as the following--could you confirm the fix?
--b.
From: Wei Yongjun <yjwei@cn.fujitsu.com>
To: nfsv4@linux-nfs.org, linux-nfs@vger.kernel.org,
"J. Bruce Fields" <bfields@fieldses.org>, Neil Brown <neilb@suse.de>
Subject: [PATCH] nfsd: fix hung up of nfs client while sync write data to
nfs server
Commit 'Short write in nfsd becomes a full write to the client'
(31dec2538e45e9fff2007ea1f4c6bae9f78db724) broken the sync write.
With the following commands to reproduce:
$ mount -t nfs -o sync 192.168.0.21:/nfsroot /mnt
$ cd /mnt
$ echo aaaa > temp.txt
Then nfs client is hung up.
In SYNC mode the server alaways return the write count 0 to the
client. This is because the value of host_err in nfsd_vfs_write()
will be overwrite in SYNC mode by 'host_err=nfsd_sync(file);',
and then we return host_err(which is now 0) as write count.
This patch fixed the problem.
Signed-off-by: Wei Yongjun <yjwei@cn.fujitsu.com>
---
fs/nfsd/vfs.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c
index 6c68ffd..b660435 100644
--- a/fs/nfsd/vfs.c
+++ b/fs/nfsd/vfs.c
@@ -1015,6 +1015,7 @@ nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
host_err = vfs_writev(file, (struct iovec __user *)vec, vlen, &offset);
set_fs(oldfs);
if (host_err >= 0) {
+ *cnt = host_err;
nfsdstats.io_write += host_err;
fsnotify_modify(file->f_path.dentry);
}
@@ -1060,10 +1061,9 @@ nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
}
dprintk("nfsd: write complete host_err=%d\n", host_err);
- if (host_err >= 0) {
+ if (host_err >= 0)
err = 0;
- *cnt = host_err;
- } else
+ else
err = nfserrno(host_err);
out:
return err;
--
1.5.3.8
next prev parent reply other threads:[~2009-05-27 19:11 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-05-27 10:32 NFSD for 2.6.30.rc7 problem Smirnov, Alexander
[not found] ` <1CB6CF624D80D146921DF8431FF3D134A6B1ACEE48-/Q0dMsjZvzKLvz4rXgwZVQ@public.gmane.org>
2009-05-27 19:11 ` J. Bruce Fields [this message]
[not found] ` <1CB6CF624D80D146921DF8431FF3D134A6B1ACEE49@LEMUR.luxoft.com>
[not found] ` <1CB6CF624D80D146921DF8431FF3D134A6B1ACEE49-/Q0dMsjZvzKLvz4rXgwZVQ@public.gmane.org>
2009-05-28 7:13 ` Smirnov, Alexander
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090527191143.GY18028@fieldses.org \
--to=bfields@fieldses.org \
--cc=AlSmirnov-WEWivvub1mjQT0dZR+AlfA@public.gmane.org \
--cc=linux-nfs@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox