diff options
-rw-r--r-- | fs/nfs/nfs4proc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c index 35bfcced2c75..1712d0360ee6 100644 --- a/fs/nfs/nfs4proc.c +++ b/fs/nfs/nfs4proc.c | |||
@@ -2711,11 +2711,15 @@ static int nfs4_wait_clnt_recover(struct rpc_clnt *clnt, struct nfs_client *clp) | |||
2711 | 2711 | ||
2712 | might_sleep(); | 2712 | might_sleep(); |
2713 | 2713 | ||
2714 | rwsem_acquire(&clp->cl_sem.dep_map, 0, 0, _RET_IP_); | ||
2715 | |||
2714 | rpc_clnt_sigmask(clnt, &oldset); | 2716 | rpc_clnt_sigmask(clnt, &oldset); |
2715 | res = wait_on_bit(&clp->cl_state, NFS4CLNT_STATE_RECOVER, | 2717 | res = wait_on_bit(&clp->cl_state, NFS4CLNT_STATE_RECOVER, |
2716 | nfs4_wait_bit_interruptible, | 2718 | nfs4_wait_bit_interruptible, |
2717 | TASK_INTERRUPTIBLE); | 2719 | TASK_INTERRUPTIBLE); |
2718 | rpc_clnt_sigunmask(clnt, &oldset); | 2720 | rpc_clnt_sigunmask(clnt, &oldset); |
2721 | |||
2722 | rwsem_release(&clp->cl_sem.dep_map, 1, _RET_IP_); | ||
2719 | return res; | 2723 | return res; |
2720 | } | 2724 | } |
2721 | 2725 | ||