NFSD: Fill in WCC data for REMOVE, RMDIR, MKNOD, and MKDIR
authorChuck Lever <chuck.lever@oracle.com>
Tue, 6 Jul 2010 20:53:34 +0000 (16:53 -0400)
committerJ. Bruce Fields <bfields@citi.umich.edu>
Wed, 7 Jul 2010 21:12:32 +0000 (17:12 -0400)
commit43a9aa64a2f4330a9cb59aaf5c5636566bce067c
tree98139046627c7fa354a106f41af55d524b7e6174
parent6a85d6c76962db769bb2f2cb11b17b16f32c4158
NFSD: Fill in WCC data for REMOVE, RMDIR, MKNOD, and MKDIR

Some well-known NFSv3 clients drop their directory entry caches when
they receive replies with no WCC data.  Without this data, they
employ extra READ, LOOKUP, and GETATTR requests to ensure their
directory entry caches are up to date, causing performance to suffer
needlessly.

In order to return WCC data, our server has to have both the pre-op
and the post-op attribute data on hand when a reply is XDR encoded.
The pre-op data is filled in when the incoming fh is locked, and the
post-op data is filled in when the fh is unlocked.

Unfortunately, for REMOVE, RMDIR, MKNOD, and MKDIR, the directory fh
is not unlocked until well after the reply has been XDR encoded.  This
means that encode_wcc_data() does not have wcc_data for the parent
directory, so none is returned to the client after these operations
complete.

By unlocking the parent directory fh immediately after the internal
operations for each NFS procedure is complete, the post-op data is
filled in before XDR encoding starts, so it can be returned to the
client properly.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
fs/nfsd/nfs3proc.c