Lines Matching defs:ctxt
846 /* Once the dlm ctxt is marked as leaving then we don't want
924 /* XXX should we consider no dlm ctxt an error? */
1568 struct domain_join_ctxt *ctxt,
1581 ret = memcmp(ctxt->live_map, dlm->live_nodes_map,
1594 struct domain_join_ctxt *ctxt;
1599 ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL);
1600 if (!ctxt) {
1612 memcpy(ctxt->live_map, dlm->live_nodes_map, sizeof(ctxt->live_map));
1619 while ((node = find_next_bit(ctxt->live_map, O2NM_MAX_NODES,
1633 set_bit(node, ctxt->yes_resp_map);
1635 if (dlm_should_restart_join(dlm, ctxt, response)) {
1648 memcpy(dlm->domain_map, ctxt->yes_resp_map,
1649 sizeof(ctxt->yes_resp_map));
1656 status = dlm_send_nodeinfo(dlm, ctxt->yes_resp_map);
1661 status = dlm_send_regions(dlm, ctxt->yes_resp_map);
1668 dlm_send_join_asserts(dlm, ctxt->yes_resp_map);
1688 if (ctxt) {
1692 ctxt->yes_resp_map,
1693 sizeof(ctxt->yes_resp_map));
1697 kfree(ctxt);
2134 mlog(0, "This ctxt is not joined yet!\n");