Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 40761
b: refs/heads/master
c: e2de7f5
h: refs/heads/master
i:
  40759: 4f35052
v: v3
  • Loading branch information
Patrick Caulfield authored and Steven Whitehouse committed Nov 6, 2006
1 parent 8765965 commit d943339
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ba542e3b92f9ea7c482ae56b68b9122eebc53a39
refs/heads/master: e2de7f565521a76fbbb927f701c5a1d381c71a93
5 changes: 5 additions & 0 deletions trunk/fs/dlm/lockspace.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ static ssize_t dlm_control_store(struct dlm_ls *ls, const char *buf, size_t len)
ssize_t ret = len;
int n = simple_strtol(buf, NULL, 0);

ls = dlm_find_lockspace_local(ls->ls_local_handle);
if (!ls)
return -EINVAL;

switch (n) {
case 0:
dlm_ls_stop(ls);
Expand All @@ -53,6 +57,7 @@ static ssize_t dlm_control_store(struct dlm_ls *ls, const char *buf, size_t len)
default:
ret = -EINVAL;
}
dlm_put_lockspace(ls);
return ret;
}

Expand Down

0 comments on commit d943339

Please sign in to comment.