Lines Matching defs:local
960 char *local, int locallen)
970 "heartbeat enabled but local node %d does not\n",
992 localnr = o2hb_get_all_regions(local, (u8)localnr);
994 /* compare local regions with remote */
995 l = local;
1009 "in local node %d but not in joining node %d\n",
1017 /* compare remote with local regions */
1021 l = local;
1032 "in joining node %d but not in local node %d\n",
1063 /* if local hb, the numregions will be zero */
1102 char *local = NULL;
1111 local = kmalloc(sizeof(qr->qr_regions), GFP_KERNEL);
1112 if (!local)
1143 status = dlm_match_regions(dlm, qr, local, sizeof(qr->qr_regions));
1151 kfree(local);
1158 struct o2nm_node *local;
1169 local = o2nm_get_node_by_num(i);
1178 if (!local && !remote)
1181 if ((local && !remote) || (!local && remote))
1185 ((remote->ni_nodenum != local->nd_num) ||
1186 (remote->ni_ipv4_port != local->nd_ipv4_port) ||
1187 (remote->ni_ipv4_address != local->nd_ipv4_address)))
1191 if (remote && !local)
1194 "local node %d\n", qn->qn_domain,
1199 if (local && !remote)
1201 "registered in local node %d but not in "
1203 local->nd_num, &(local->nd_ipv4_address),
1204 ntohs(local->nd_ipv4_port),
1206 BUG_ON((!local && !remote));
1209 if (local)
1210 o2nm_node_put(local);