]> git.baikalelectronics.ru Git - kernel.git/commit
nfsd: fix hung up of nfs client while sync write data to nfs server
authorWei Yongjun <yjwei@cn.fujitsu.com>
Tue, 19 May 2009 04:03:15 +0000 (12:03 +0800)
committerJ. Bruce Fields <bfields@citi.umich.edu>
Wed, 27 May 2009 21:40:06 +0000 (17:40 -0400)
commitc55eadb34238fdb4834bafac1e5f748136a3bc74
tree2cda7bf3b4514cf13158a557f3ab82d384ce5349
parentf8d87df3763c6b8454a30ddd50ef6ce9f0982182
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'
(49652169c43aa899ef29202832b2626b284e16cc) 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>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
fs/nfsd/vfs.c