diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-10 17:55:55 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-10 17:55:55 -0500 |
commit | 49d41bae46f15da528ef9848fd7c9d38582aa8e9 (patch) | |
tree | 76907a9a5066642a32cb238ef8d8367fc612d064 /fs/gfs2 | |
parent | 7b3480f8b701170c046e1ed362946f5f0d005e13 (diff) | |
parent | 60f98d1839376d30e13f3e452dce2433fad3060e (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm:
dlm: add recovery callbacks
dlm: add node slots and generation
dlm: move recovery barrier calls
dlm: convert rsb list to rb_tree
Diffstat (limited to 'fs/gfs2')
-rw-r--r-- | fs/gfs2/lock_dlm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/gfs2/lock_dlm.c b/fs/gfs2/lock_dlm.c index 98c80d8c2a62..ce85b62bc0a2 100644 --- a/fs/gfs2/lock_dlm.c +++ b/fs/gfs2/lock_dlm.c | |||
@@ -195,10 +195,10 @@ static int gdlm_mount(struct gfs2_sbd *sdp, const char *fsname) | |||
195 | return -EINVAL; | 195 | return -EINVAL; |
196 | } | 196 | } |
197 | 197 | ||
198 | error = dlm_new_lockspace(fsname, strlen(fsname), &ls->ls_dlm, | 198 | error = dlm_new_lockspace(fsname, NULL, |
199 | DLM_LSFL_FS | DLM_LSFL_NEWEXCL | | 199 | DLM_LSFL_FS | DLM_LSFL_NEWEXCL | |
200 | (ls->ls_nodir ? DLM_LSFL_NODIR : 0), | 200 | (ls->ls_nodir ? DLM_LSFL_NODIR : 0), |
201 | GDLM_LVB_SIZE); | 201 | GDLM_LVB_SIZE, NULL, NULL, NULL, &ls->ls_dlm); |
202 | if (error) | 202 | if (error) |
203 | printk(KERN_ERR "dlm_new_lockspace error %d", error); | 203 | printk(KERN_ERR "dlm_new_lockspace error %d", error); |
204 | 204 | ||