aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ocfs2/dlm/dlmmaster.c
diff options
context:
space:
mode:
authorKurt Hackel <kurt.hackel@oracle.com>2007-01-17 20:05:53 -0500
committerMark Fasheh <mark.fasheh@oracle.com>2007-02-07 15:07:24 -0500
commit3b8118cffad224415c6f6f35abe7ca2a1d79c05a (patch)
tree2896f977f25b1c874472bdabb90d72c755f95573 /fs/ocfs2/dlm/dlmmaster.c
parentd74c9803a90d733f5fb7270475aa6d14b45796c6 (diff)
ocfs2_dlm: Calling post handler function in assert master handler
This patch prevents the dlm from sending the clear refmap message before the set refmap. We use the newly created post function handler routine to accomplish the task. Signed-off-by: Kurt Hackel <kurt.hackel@oracle.com> Signed-off-by: Sunil Mushran <sunil.mushran@oracle.com> Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Diffstat (limited to 'fs/ocfs2/dlm/dlmmaster.c')
-rw-r--r--fs/ocfs2/dlm/dlmmaster.c24
1 files changed, 21 insertions, 3 deletions
diff --git a/fs/ocfs2/dlm/dlmmaster.c b/fs/ocfs2/dlm/dlmmaster.c
index bd1268778b66..84f36db8ada3 100644
--- a/fs/ocfs2/dlm/dlmmaster.c
+++ b/fs/ocfs2/dlm/dlmmaster.c
@@ -2036,8 +2036,12 @@ ok:
2036 2036
2037done: 2037done:
2038 ret = 0; 2038 ret = 0;
2039 if (res) 2039 if (res) {
2040 dlm_lockres_put(res); 2040 spin_lock(&res->spinlock);
2041 res->state |= DLM_LOCK_RES_SETREF_INPROG;
2042 spin_unlock(&res->spinlock);
2043 *ret_data = (void *)res;
2044 }
2041 dlm_put(dlm); 2045 dlm_put(dlm);
2042 if (master_request) { 2046 if (master_request) {
2043 mlog(0, "need to tell master to reassert\n"); 2047 mlog(0, "need to tell master to reassert\n");
@@ -2064,11 +2068,25 @@ kill:
2064 __dlm_print_one_lock_resource(res); 2068 __dlm_print_one_lock_resource(res);
2065 spin_unlock(&res->spinlock); 2069 spin_unlock(&res->spinlock);
2066 spin_unlock(&dlm->spinlock); 2070 spin_unlock(&dlm->spinlock);
2067 dlm_lockres_put(res); 2071 *ret_data = (void *)res;
2068 dlm_put(dlm); 2072 dlm_put(dlm);
2069 return -EINVAL; 2073 return -EINVAL;
2070} 2074}
2071 2075
2076void dlm_assert_master_post_handler(int status, void *data, void *ret_data)
2077{
2078 struct dlm_lock_resource *res = (struct dlm_lock_resource *)ret_data;
2079
2080 if (ret_data) {
2081 spin_lock(&res->spinlock);
2082 res->state &= ~DLM_LOCK_RES_SETREF_INPROG;
2083 spin_unlock(&res->spinlock);
2084 wake_up(&res->wq);
2085 dlm_lockres_put(res);
2086 }
2087 return;
2088}
2089
2072int dlm_dispatch_assert_master(struct dlm_ctxt *dlm, 2090int dlm_dispatch_assert_master(struct dlm_ctxt *dlm,
2073 struct dlm_lock_resource *res, 2091 struct dlm_lock_resource *res,
2074 int ignore_higher, u8 request_from, u32 flags) 2092 int ignore_higher, u8 request_from, u32 flags)