diff options
author | J. Bruce Fields <bfields@citi.umich.edu> | 2009-05-01 19:57:46 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@citi.umich.edu> | 2009-05-01 19:57:46 -0400 |
commit | 6707bd3d420f53ae8f090dac871843f6f43c9980 (patch) | |
tree | d72d14847fddef8bec160cd15e58d9edb9a9ddd9 /fs/nfsd/nfs4callback.c | |
parent | b53d40c5070bffde1b2bcaf848412a50d8894794 (diff) | |
download | linux-3.10-6707bd3d420f53ae8f090dac871843f6f43c9980.tar.gz linux-3.10-6707bd3d420f53ae8f090dac871843f6f43c9980.tar.bz2 linux-3.10-6707bd3d420f53ae8f090dac871843f6f43c9980.zip |
nfsd4: remove unused dl_trunc
There's no point in keeping this field around--it's always zero.
(Background: the protocol allows you to tell the client that the file is
about to be truncated, as an optimization to save the client from
writing back dirty pages that will just be discarded. We don't
implement this hint. If we do some day, adding this field back in will
be the least of the work involved.)
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Diffstat (limited to 'fs/nfsd/nfs4callback.c')
-rw-r--r-- | fs/nfsd/nfs4callback.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/nfsd/nfs4callback.c b/fs/nfsd/nfs4callback.c index 2509305f6f5..0420b5e6e20 100644 --- a/fs/nfsd/nfs4callback.c +++ b/fs/nfsd/nfs4callback.c @@ -224,7 +224,7 @@ encode_cb_recall(struct xdr_stream *xdr, struct nfs4_delegation *dp) WRITE32(OP_CB_RECALL); WRITE32(dp->dl_stateid.si_generation); WRITEMEM(&dp->dl_stateid.si_opaque, sizeof(stateid_opaque_t)); - WRITE32(dp->dl_trunc); + WRITE32(0); /* truncate optimization not implemented */ WRITE32(len); WRITEMEM(&dp->dl_fh.fh_base, len); return 0; @@ -510,8 +510,6 @@ nfsd4_cb_recall(struct nfs4_delegation *dp) int retries = 1; int status = 0; - dp->dl_trunc = 0; /* XXX need to implement truncate optimization */ - status = rpc_call_sync(clnt, &msg, RPC_TASK_SOFT); while (retries--) { switch (status) { |