Commit 278afcbf authored by David Teigland's avatar David Teigland

dlm: fix shutdown cleanup

Fixes a regression from commit 0f8e0d9a,
"dlm: allow multiple lockspace creates".

An extraneous 'else' slipped into a code fragment being moved from
release_lockspace() to dlm_release_lockspace().  The result of the
unwanted 'else' is that dlm threads and structures are not stopped
and cleaned up when the final dlm lockspace is removed.  Trying to
create a new lockspace again afterward will fail with
"kmem_cache_create: duplicate cache dlm_conn" because the cache
was not previously destroyed.
Signed-off-by: default avatarDavid Teigland <teigland@redhat.com>
parent 3edac25f
...@@ -812,7 +812,7 @@ int dlm_release_lockspace(void *lockspace, int force) ...@@ -812,7 +812,7 @@ int dlm_release_lockspace(void *lockspace, int force)
error = release_lockspace(ls, force); error = release_lockspace(ls, force);
if (!error) if (!error)
ls_count--; ls_count--;
else if (!ls_count) if (!ls_count)
threads_stop(); threads_stop();
mutex_unlock(&ls_lock); mutex_unlock(&ls_lock);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment