ocfs2: Update dlmglue for new dlmlock() API
authorMark Fasheh <mark.fasheh@oracle.com>
Fri, 8 Sep 2006 18:40:10 +0000 (11:40 -0700)
committerMark Fasheh <mark.fasheh@oracle.com>
Sun, 24 Sep 2006 20:50:42 +0000 (13:50 -0700)
File system lock names are very regular right now, so we really only need to
pass an extra parameter to dlmlock().

Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
fs/ocfs2/dlmglue.c

index 151b417..20c6ca8 100644 (file)
@@ -810,6 +810,7 @@ static int ocfs2_lock_create(struct ocfs2_super *osb,
                         &lockres->l_lksb,
                         dlm_flags,
                         lockres->l_name,
+                        OCFS2_LOCK_ID_MAX_LEN - 1,
                         lockres->l_ops->ast,
                         lockres,
                         lockres->l_ops->bast);
@@ -999,6 +1000,7 @@ again:
                                 &lockres->l_lksb,
                                 lkm_flags|LKM_CONVERT|LKM_VALBLK,
                                 lockres->l_name,
+                                OCFS2_LOCK_ID_MAX_LEN - 1,
                                 lockres->l_ops->ast,
                                 lockres,
                                 lockres->l_ops->bast);
@@ -2419,6 +2421,7 @@ static int ocfs2_downconvert_lock(struct ocfs2_super *osb,
                         &lockres->l_lksb,
                         dlm_flags,
                         lockres->l_name,
+                        OCFS2_LOCK_ID_MAX_LEN - 1,
                         lockres->l_ops->ast,
                         lockres,
                         lockres->l_ops->bast);