int wd_degenerate_backend_set(int *node_id_set, int count) { int rtn = 0; if (wd_chk_node_mask(WD_DEGENERATE_BACKEND,node_id_set,count)) { return WD_OK; } /* send degenerate packet */ rtn = wd_send_node_packet(WD_DEGENERATE_BACKEND, node_id_set, count); return rtn; }
int wd_promote_backend(int node_id) { int rtn = 0; int n = node_id; if (wd_chk_node_mask(WD_PROMOTE_BACKEND,&n,1)) { return WD_OK; } /* send promote packet */ rtn = wd_send_node_packet(WD_PROMOTE_BACKEND, &n, 1); return rtn; }
int wd_degenerate_backend_set(int *node_id_set, int count) { int rtn = 0; /* if degenerate packet is received already, do nothing */ if (wd_chk_node_mask(WD_DEGENERATE_BACKEND,node_id_set,count)) { return WD_OK; } /* send degenerate packet */ rtn = wd_send_node_packet(WD_DEGENERATE_BACKEND, node_id_set, count); return rtn; }
int wd_send_failback_request(int node_id) { int rtn = 0; int n = node_id; if (wd_chk_node_mask(WD_FAILBACK_REQUEST,&n,1)) { return WD_OK; } /* send failback packet */ rtn = wd_send_node_packet(WD_FAILBACK_REQUEST, &n, 1); return rtn; }
int wd_send_failback_request(int node_id) { int rtn = 0; int n = node_id; /* if failback packet is received already, do nothing */ if (wd_chk_node_mask(WD_FAILBACK_REQUEST,&n,1)) { return WD_OK; } /* send failback packet */ rtn = wd_send_node_packet(WD_FAILBACK_REQUEST, &n, 1); return rtn; }
int wd_promote_backend(int node_id) { int rtn = 0; int n = node_id; /* if promote packet is received already, do nothing */ if (wd_chk_node_mask(WD_PROMOTE_BACKEND,&n,1)) { return WD_OK; } /* send promote packet */ rtn = wd_send_node_packet(WD_PROMOTE_BACKEND, &n, 1); return rtn; }