Lines Matching defs:local
958 char *local, int locallen)
968 "heartbeat enabled but local node %d does not\n",
990 localnr = o2hb_get_all_regions(local, (u8)localnr);
992 /* compare local regions with remote */
993 l = local;
1007 "in local node %d but not in joining node %d\n",
1015 /* compare remote with local regions */
1019 l = local;
1030 "in joining node %d but not in local node %d\n",
1061 /* if local hb, the numregions will be zero */
1100 char *local = NULL;
1109 local = kmalloc(sizeof(qr->qr_regions), GFP_KERNEL);
1110 if (!local)
1141 status = dlm_match_regions(dlm, qr, local, sizeof(qr->qr_regions));
1149 kfree(local);
1156 struct o2nm_node *local;
1167 local = o2nm_get_node_by_num(i);
1176 if (!local && !remote)
1179 if ((local && !remote) || (!local && remote))
1183 ((remote->ni_nodenum != local->nd_num) ||
1184 (remote->ni_ipv4_port != local->nd_ipv4_port) ||
1185 (remote->ni_ipv4_address != local->nd_ipv4_address)))
1189 if (remote && !local)
1192 "local node %d\n", qn->qn_domain,
1197 if (local && !remote)
1199 "registered in local node %d but not in "
1201 local->nd_num, &(local->nd_ipv4_address),
1202 ntohs(local->nd_ipv4_port),
1204 BUG_ON((!local && !remote));
1207 if (local)
1208 o2nm_node_put(local);