ocfs2_dlm: Ensure correct ordering of set/clear refmap bit on lockres
Eventhough the set refmap bit message is sent before the clear refmap message, currently there is no guarentee that the set message will be handled before the clear. This patch prevents the clear refmap to be processed while the node is sending assert master messages to other nodes. (The set refmap message is sent as a response to the assert master request). Signed-off-by: Sunil Mushran <sunil.mushran@oracle.com> Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
此提交包含在:
@@ -180,6 +180,11 @@ struct dlm_assert_master_priv
|
||||
unsigned ignore_higher:1;
|
||||
};
|
||||
|
||||
struct dlm_deref_lockres_priv
|
||||
{
|
||||
struct dlm_lock_resource *deref_res;
|
||||
u8 deref_node;
|
||||
};
|
||||
|
||||
struct dlm_work_item
|
||||
{
|
||||
@@ -191,6 +196,7 @@ struct dlm_work_item
|
||||
struct dlm_request_all_locks_priv ral;
|
||||
struct dlm_mig_lockres_priv ml;
|
||||
struct dlm_assert_master_priv am;
|
||||
struct dlm_deref_lockres_priv dl;
|
||||
} u;
|
||||
};
|
||||
|
||||
|
新增問題並參考
封鎖使用者