]> git.karo-electronics.de Git - linux-beck.git/commitdiff
dlm: fix use count with multiple joins
authorDavid Teigland <teigland@redhat.com>
Wed, 8 Apr 2009 20:38:43 +0000 (15:38 -0500)
committerDavid Teigland <teigland@redhat.com>
Thu, 7 May 2009 15:14:42 +0000 (10:14 -0500)
When a lockspace was joined multiple times, the global dlm
use count was incremented when it should not have been.  This
caused the global dlm threads to not be stopped when all
lockspaces were eventually be removed.

Signed-off-by: David Teigland <teigland@redhat.com>
fs/dlm/lockspace.c

index 82528d9b72ed01c98cf4f3990ed89715eaaa23d9..d489fcc86713de1d0484902d6e7f911b57377cd0 100644 (file)
@@ -419,16 +419,14 @@ static int new_lockspace(const char *name, int namelen, void **lockspace,
                        break;
                }
                ls->ls_create_count++;
-               module_put(THIS_MODULE);
-               error = 1; /* not an error, return 0 */
+               *lockspace = ls;
+               error = 1;
                break;
        }
        spin_unlock(&lslist_lock);
 
-       if (error < 0)
-               goto out;
        if (error)
-               goto ret_zero;
+               goto out;
 
        error = -ENOMEM;
 
@@ -583,7 +581,6 @@ static int new_lockspace(const char *name, int namelen, void **lockspace,
        dlm_create_debug_file(ls);
 
        log_debug(ls, "join complete");
- ret_zero:
        *lockspace = ls;
        return 0;
 
@@ -628,7 +625,9 @@ int dlm_new_lockspace(const char *name, int namelen, void **lockspace,
        error = new_lockspace(name, namelen, lockspace, flags, lvblen);
        if (!error)
                ls_count++;
-       else if (!ls_count)
+       if (error > 0)
+               error = 0;
+       if (!ls_count)
                threads_stop();
  out:
        mutex_unlock(&ls_lock);