diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2012-10-02 12:18:12 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-10-02 12:25:02 -0400 |
commit | c2ccc084eb46ae718a200ad9c2606c258bf79a25 (patch) | |
tree | b7699623a38b969f21265310f5796bdb34f48b3c /fs/nfs/nfs4client.c | |
parent | ee314c2a35ee7ea7ffa72e2aca83b041138f3358 (diff) |
NFS: nfs41_walk_client_list(): re-lock before iterating
Sparse identified an execution path in nfs41_walk_client_list()
where the nfs_client_lock is not re-acquired before taking the next
loop iteration.
fs/nfs/nfs4client.c:437:9: sparse: context imbalance in
'nfs41_walk_client_list' - different lock contexts for basic block
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Cc: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/nfs4client.c')
-rw-r--r-- | fs/nfs/nfs4client.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/nfs/nfs4client.c b/fs/nfs/nfs4client.c index 8466e6046ff5..6bacfde1319a 100644 --- a/fs/nfs/nfs4client.c +++ b/fs/nfs/nfs4client.c | |||
@@ -450,6 +450,7 @@ int nfs41_walk_client_list(struct nfs_client *new, | |||
450 | error = nfs_wait_client_init_complete(pos); | 450 | error = nfs_wait_client_init_complete(pos); |
451 | if (error < 0) { | 451 | if (error < 0) { |
452 | nfs_put_client(pos); | 452 | nfs_put_client(pos); |
453 | spin_lock(&nn->nfs_client_lock); | ||
453 | continue; | 454 | continue; |
454 | } | 455 | } |
455 | 456 | ||