aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/nfs4state.c
diff options
context:
space:
mode:
authorAndy Adamson <andros@netapp.com>2009-12-04 15:55:38 -0500
committerTrond Myklebust <Trond.Myklebust@netapp.com>2009-12-04 15:55:38 -0500
commitea028ac92541ac30bf202ed94cb53eec2ea0c9d6 (patch)
treef9b807cf0f870db922f96e72dab68ed37ba18cf0 /fs/nfs/nfs4state.c
parent05f0d2364726c92f6b870db654967088349379fe (diff)
nfs41: nfs41: fix state manager deadlock in session reset
If the session is reset during state recovery, the state manager thread can sleep on the slot_tbl_waitq causing a deadlock. Add a completion framework to the session. Have the state manager thread set a new session state (NFS4CLNT_SESSION_DRAINING) and wait for the session slot table to drain. Signal the state manager thread in nfs41_sequence_free_slot when the NFS4CLNT_SESSION_DRAINING bit is set and the session is drained. Reported-by: Trond Myklebust <trond@netapp.com> Signed-off-by: Andy Adamson <andros@netapp.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/nfs4state.c')
-rw-r--r--fs/nfs/nfs4state.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/fs/nfs/nfs4state.c b/fs/nfs/nfs4state.c
index f56f6be5e314..3c1433598b60 100644
--- a/fs/nfs/nfs4state.c
+++ b/fs/nfs/nfs4state.c
@@ -1181,8 +1181,23 @@ static void nfs4_session_recovery_handle_error(struct nfs_client *clp, int err)
1181 1181
1182static int nfs4_reset_session(struct nfs_client *clp) 1182static int nfs4_reset_session(struct nfs_client *clp)
1183{ 1183{
1184 struct nfs4_session *ses = clp->cl_session;
1185 struct nfs4_slot_table *tbl = &ses->fc_slot_table;
1184 int status; 1186 int status;
1185 1187
1188 INIT_COMPLETION(ses->complete);
1189 spin_lock(&tbl->slot_tbl_lock);
1190 if (tbl->highest_used_slotid != -1) {
1191 set_bit(NFS4CLNT_SESSION_DRAINING, &clp->cl_state);
1192 spin_unlock(&tbl->slot_tbl_lock);
1193 status = wait_for_completion_interruptible(&ses->complete);
1194 clear_bit(NFS4CLNT_SESSION_DRAINING, &clp->cl_state);
1195 if (status) /* -ERESTARTSYS */
1196 goto out;
1197 } else {
1198 spin_unlock(&tbl->slot_tbl_lock);
1199 }
1200
1186 status = nfs4_proc_destroy_session(clp->cl_session); 1201 status = nfs4_proc_destroy_session(clp->cl_session);
1187 if (status && status != -NFS4ERR_BADSESSION && 1202 if (status && status != -NFS4ERR_BADSESSION &&
1188 status != -NFS4ERR_DEADSESSION) { 1203 status != -NFS4ERR_DEADSESSION) {