diff options
Diffstat (limited to 'fs/nfs/nfs4state.c')
-rw-r--r-- | fs/nfs/nfs4state.c | 15 |
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 | ||
1182 | static int nfs4_reset_session(struct nfs_client *clp) | 1182 | static 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) { |