aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/nfs4proc.c
diff options
context:
space:
mode:
authorAndy Adamson <andros@netapp.com>2009-12-04 16:02:14 -0500
committerTrond Myklebust <Trond.Myklebust@netapp.com>2009-12-04 16:02:14 -0500
commit0b9e2d41f1f0360be08809d4e3bb56b67be6241a (patch)
tree6628c9ef423cf09a76ec34b6f9db64c7ca704c38 /fs/nfs/nfs4proc.c
parent691daf3b0c410c8bcab6735796be03ea446e1924 (diff)
nfs41: only state manager sets NFS4CLNT_SESSION_SETUP
Replace sync and async handlers setting of the NFS4CLNT_SESSION_SETUP bit with setting NFS4CLNT_CHECK_LEASE, and let the state manager decide to reset the session. Signed-off-by: Andy Adamson <andros@netapp.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/nfs4proc.c')
-rw-r--r--fs/nfs/nfs4proc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c
index a0f73e99ff3d..637a6b476bd6 100644
--- a/fs/nfs/nfs4proc.c
+++ b/fs/nfs/nfs4proc.c
@@ -270,7 +270,7 @@ static int nfs4_handle_exception(const struct nfs_server *server, int errorcode,
270 case -NFS4ERR_SEQ_MISORDERED: 270 case -NFS4ERR_SEQ_MISORDERED:
271 dprintk("%s ERROR: %d Reset session\n", __func__, 271 dprintk("%s ERROR: %d Reset session\n", __func__,
272 errorcode); 272 errorcode);
273 set_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state); 273 nfs4_schedule_state_recovery(clp);
274 exception->retry = 1; 274 exception->retry = 1;
275 break; 275 break;
276#endif /* !defined(CONFIG_NFS_V4_1) */ 276#endif /* !defined(CONFIG_NFS_V4_1) */
@@ -466,7 +466,7 @@ static int nfs41_setup_sequence(struct nfs4_session *session,
466 tbl = &session->fc_slot_table; 466 tbl = &session->fc_slot_table;
467 467
468 spin_lock(&tbl->slot_tbl_lock); 468 spin_lock(&tbl->slot_tbl_lock);
469 if (test_bit(NFS4CLNT_SESSION_RESET, &session->clp->cl_state)) { 469 if (test_bit(NFS4CLNT_SESSION_DRAINING, &session->clp->cl_state)) {
470 /* 470 /*
471 * The state manager will wait until the slot table is empty. 471 * The state manager will wait until the slot table is empty.
472 * Schedule the reset thread 472 * Schedule the reset thread
@@ -3368,7 +3368,7 @@ _nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server,
3368 case -NFS4ERR_SEQ_MISORDERED: 3368 case -NFS4ERR_SEQ_MISORDERED:
3369 dprintk("%s ERROR %d, Reset session\n", __func__, 3369 dprintk("%s ERROR %d, Reset session\n", __func__,
3370 task->tk_status); 3370 task->tk_status);
3371 set_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state); 3371 nfs4_schedule_state_recovery(clp);
3372 task->tk_status = 0; 3372 task->tk_status = 0;
3373 return -EAGAIN; 3373 return -EAGAIN;
3374#endif /* CONFIG_NFS_V4_1 */ 3374#endif /* CONFIG_NFS_V4_1 */