diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-11-13 11:56:05 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-11-13 11:56:05 -0800 |
commit | 7b423653964b22e6ca1a1ffd84816d619d6a3976 (patch) | |
tree | a005620261a8830c86261733d0f1198d2303335b /fs/dlm | |
parent | 2d1595ad8766c9cbab81d259168c00261d382ac5 (diff) | |
parent | 278afcbf4fe964230eba67f8fb8235e8b7e63ffb (diff) | |
download | op-kernel-dev-7b423653964b22e6ca1a1ffd84816d619d6a3976.zip op-kernel-dev-7b423653964b22e6ca1a1ffd84816d619d6a3976.tar.gz |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm:
dlm: fix shutdown cleanup
Diffstat (limited to 'fs/dlm')
-rw-r--r-- | fs/dlm/lockspace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/dlm/lockspace.c b/fs/dlm/lockspace.c index d910501..8d86b79 100644 --- a/fs/dlm/lockspace.c +++ b/fs/dlm/lockspace.c @@ -812,7 +812,7 @@ int dlm_release_lockspace(void *lockspace, int force) error = release_lockspace(ls, force); if (!error) ls_count--; - else if (!ls_count) + if (!ls_count) threads_stop(); mutex_unlock(&ls_lock); |