Lines Matching refs:ctxt
1566 struct domain_join_ctxt *ctxt, in dlm_should_restart_join() argument
1579 ret = !bitmap_equal(ctxt->live_map, dlm->live_nodes_map, in dlm_should_restart_join()
1592 struct domain_join_ctxt *ctxt; in dlm_try_to_join_domain() local
1597 ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL); in dlm_try_to_join_domain()
1598 if (!ctxt) { in dlm_try_to_join_domain()
1610 bitmap_copy(ctxt->live_map, dlm->live_nodes_map, O2NM_MAX_NODES); in dlm_try_to_join_domain()
1615 while ((node = find_next_bit(ctxt->live_map, O2NM_MAX_NODES, in dlm_try_to_join_domain()
1629 set_bit(node, ctxt->yes_resp_map); in dlm_try_to_join_domain()
1631 if (dlm_should_restart_join(dlm, ctxt, response)) { in dlm_try_to_join_domain()
1644 bitmap_copy(dlm->domain_map, ctxt->yes_resp_map, O2NM_MAX_NODES); in dlm_try_to_join_domain()
1651 status = dlm_send_nodeinfo(dlm, ctxt->yes_resp_map); in dlm_try_to_join_domain()
1656 status = dlm_send_regions(dlm, ctxt->yes_resp_map); in dlm_try_to_join_domain()
1663 dlm_send_join_asserts(dlm, ctxt->yes_resp_map); in dlm_try_to_join_domain()
1683 if (ctxt) { in dlm_try_to_join_domain()
1687 ctxt->yes_resp_map, in dlm_try_to_join_domain()
1688 sizeof(ctxt->yes_resp_map)); in dlm_try_to_join_domain()
1692 kfree(ctxt); in dlm_try_to_join_domain()