Lines Matching refs:ctxt
1585 struct domain_join_ctxt *ctxt, in dlm_should_restart_join() argument
1598 ret = memcmp(ctxt->live_map, dlm->live_nodes_map, in dlm_should_restart_join()
1611 struct domain_join_ctxt *ctxt; in dlm_try_to_join_domain() local
1616 ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL); in dlm_try_to_join_domain()
1617 if (!ctxt) { in dlm_try_to_join_domain()
1629 memcpy(ctxt->live_map, dlm->live_nodes_map, sizeof(ctxt->live_map)); in dlm_try_to_join_domain()
1636 while ((node = find_next_bit(ctxt->live_map, O2NM_MAX_NODES, in dlm_try_to_join_domain()
1650 set_bit(node, ctxt->yes_resp_map); in dlm_try_to_join_domain()
1652 if (dlm_should_restart_join(dlm, ctxt, response)) { in dlm_try_to_join_domain()
1665 memcpy(dlm->domain_map, ctxt->yes_resp_map, in dlm_try_to_join_domain()
1666 sizeof(ctxt->yes_resp_map)); in dlm_try_to_join_domain()
1673 status = dlm_send_nodeinfo(dlm, ctxt->yes_resp_map); in dlm_try_to_join_domain()
1678 status = dlm_send_regions(dlm, ctxt->yes_resp_map); in dlm_try_to_join_domain()
1685 dlm_send_join_asserts(dlm, ctxt->yes_resp_map); in dlm_try_to_join_domain()
1705 if (ctxt) { in dlm_try_to_join_domain()
1709 ctxt->yes_resp_map, in dlm_try_to_join_domain()
1710 sizeof(ctxt->yes_resp_map)); in dlm_try_to_join_domain()
1714 kfree(ctxt); in dlm_try_to_join_domain()