From 775c0eba2ab4b365c0cb0d642056c8101b640a88 Mon Sep 17 00:00:00 2001 From: wangdi Date: Tue, 16 Jan 2024 09:59:37 -0800 Subject: [PATCH] DAOS-14972 pool: Only allow UPIN engine as PS replicas (#13593) Only allow UPIN engine as PS replicas to avoid IV leader switch hashles during rebuild for the moment. Required-githooks: true Signed-off-by: Di Wang --- src/pool/srv_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pool/srv_util.c b/src/pool/srv_util.c index 3657b84d647..b5b37709690 100644 --- a/src/pool/srv_util.c +++ b/src/pool/srv_util.c @@ -392,7 +392,7 @@ int ds_pool_plan_svc_reconfs(int svc_rf, struct pool_map *map, d_rank_list_t *replicas, d_rank_t self, d_rank_list_t **to_add_out, d_rank_list_t **to_remove_out) { - const pool_comp_state_t desired_states = PO_COMP_ST_UP | PO_COMP_ST_UPIN; + const pool_comp_state_t desired_states = PO_COMP_ST_UPIN; struct pool_domain *nodes = NULL; int nnodes; int objective;