[PATCH] sunrpc: add missing spin_unlock
auth_domain_put() forgot to unlock acquired spinlock. Cc: Olaf Kirch <okir@monad.swb.de> Cc: Andy Adamson <andros@citi.umich.edu> Cc: J. Bruce Fields <bfields@citi.umich.edu> Acked-by: Trond Myklebust <Trond.Myklebust@netapp.com> Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com> Cc: Neil Brown <neilb@suse.de> Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
7cc13edc13
commit
0c7bb31db0
1 changed files with 1 additions and 0 deletions
|
@ -126,6 +126,7 @@ void auth_domain_put(struct auth_domain *dom)
|
|||
if (atomic_dec_and_lock(&dom->ref.refcount, &auth_domain_lock)) {
|
||||
hlist_del(&dom->hash);
|
||||
dom->flavour->domain_release(dom);
|
||||
spin_unlock(&auth_domain_lock);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue