aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorJ. Bruce Fields <bfields@citi.umich.edu>2009-05-01 20:11:12 -0400
committerJ. Bruce Fields <bfields@citi.umich.edu>2009-05-01 20:11:12 -0400
commit3aea09dc9106407d8bc18e593fbffda9ad632844 (patch)
tree563b9b3cfbd5203e87b7fea59946729c135de1d3 /fs
parent6707bd3d420f53ae8f090dac871843f6f43c9980 (diff)
nfsd4: track recall retries in nfs4_delegation
Move this out of a local variable into the nfs4_delegation object in preparation for making this an async rpc call (at which point we'll need any state like this in a common object that's preserved across function calls). Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Diffstat (limited to 'fs')
-rw-r--r--fs/nfsd/nfs4callback.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfsd/nfs4callback.c b/fs/nfsd/nfs4callback.c
index 0420b5e6e20d..b88b207d75d9 100644
--- a/fs/nfsd/nfs4callback.c
+++ b/fs/nfsd/nfs4callback.c
@@ -507,11 +507,11 @@ nfsd4_cb_recall(struct nfs4_delegation *dp)
507 .rpc_argp = dp, 507 .rpc_argp = dp,
508 .rpc_cred = clp->cl_cb_conn.cb_cred 508 .rpc_cred = clp->cl_cb_conn.cb_cred
509 }; 509 };
510 int retries = 1;
511 int status = 0; 510 int status = 0;
512 511
512 dp->dl_retries = 1;
513 status = rpc_call_sync(clnt, &msg, RPC_TASK_SOFT); 513 status = rpc_call_sync(clnt, &msg, RPC_TASK_SOFT);
514 while (retries--) { 514 while (dp->dl_retries--) {
515 switch (status) { 515 switch (status) {
516 case -EIO: 516 case -EIO:
517 /* Network partition? */ 517 /* Network partition? */