Lines Matching refs:ctxt
1577 struct domain_join_ctxt *ctxt, in dlm_should_restart_join() argument
1590 ret = memcmp(ctxt->live_map, dlm->live_nodes_map, in dlm_should_restart_join()
1603 struct domain_join_ctxt *ctxt; in dlm_try_to_join_domain() local
1608 ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL); in dlm_try_to_join_domain()
1609 if (!ctxt) { in dlm_try_to_join_domain()
1621 memcpy(ctxt->live_map, dlm->live_nodes_map, sizeof(ctxt->live_map)); in dlm_try_to_join_domain()
1628 while ((node = find_next_bit(ctxt->live_map, O2NM_MAX_NODES, in dlm_try_to_join_domain()
1642 set_bit(node, ctxt->yes_resp_map); in dlm_try_to_join_domain()
1644 if (dlm_should_restart_join(dlm, ctxt, response)) { in dlm_try_to_join_domain()
1657 memcpy(dlm->domain_map, ctxt->yes_resp_map, in dlm_try_to_join_domain()
1658 sizeof(ctxt->yes_resp_map)); in dlm_try_to_join_domain()
1665 status = dlm_send_nodeinfo(dlm, ctxt->yes_resp_map); in dlm_try_to_join_domain()
1670 status = dlm_send_regions(dlm, ctxt->yes_resp_map); in dlm_try_to_join_domain()
1677 dlm_send_join_asserts(dlm, ctxt->yes_resp_map); in dlm_try_to_join_domain()
1697 if (ctxt) { in dlm_try_to_join_domain()
1701 ctxt->yes_resp_map, in dlm_try_to_join_domain()
1702 sizeof(ctxt->yes_resp_map)); in dlm_try_to_join_domain()
1706 kfree(ctxt); in dlm_try_to_join_domain()