Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 148659
b: refs/heads/master
c: 8511a27
h: refs/heads/master
i:
  148657: de5446c
  148655: b4c659f
v: v3
  • Loading branch information
David Teigland committed May 7, 2009
1 parent be2f7ca commit 871eea7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 08ce4c91e44d51bb6c946f2756825a462d53c545
refs/heads/master: 8511a2728ab82cab398e39d019f5cf1246021c1c
13 changes: 6 additions & 7 deletions trunk/fs/dlm/lockspace.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -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;

Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 871eea7

Please sign in to comment.