7171 _macro(ucp_am_rndv_proto) \
7272 _macro(ucp_stream_multi_bcopy_proto) \
7373 _macro(ucp_stream_multi_zcopy_proto) \
74+ _macro(ucp_failover_replay_proto) \
7475 UCP_PROTO_AMO_FOR_EACH(_macro, post) \
7576 UCP_PROTO_AMO_FOR_EACH(_macro, fetch) \
7677 UCP_PROTO_AMO_FOR_EACH(_macro, cswap)
@@ -87,20 +88,23 @@ const ucp_proto_t *ucp_protocols[] = {
8788};
8889
8990const char * ucp_operation_names [] = {
90- [UCP_OP_ID_TAG_SEND ] = "tag_send" ,
91- [UCP_OP_ID_TAG_SEND_SYNC ] = "tag_send_sync" ,
92- [UCP_OP_ID_AM_SEND ] = "am_send" ,
93- [UCP_OP_ID_AM_SEND_REPLY ] = "am_send_reply" ,
94- [UCP_OP_ID_STREAM_SEND ] = "stream" ,
95- [UCP_OP_ID_PUT ] = "put" ,
96- [UCP_OP_ID_GET ] = "get" ,
97- [UCP_OP_ID_AMO_POST ] = "amo_post" ,
98- [UCP_OP_ID_AMO_FETCH ] = "amo_fetch" ,
99- [UCP_OP_ID_AMO_CSWAP ] = "amo_cswap" ,
100- [UCP_OP_ID_RNDV_SEND ] = "rndv_send" ,
101- [UCP_OP_ID_RNDV_RECV ] = "rndv_recv" ,
102- [UCP_OP_ID_RNDV_RECV_DROP ] = "rndv_recv_drop" ,
103- [UCP_OP_ID_LAST ] = NULL
91+ [UCP_OP_ID_TAG_SEND ] = "tag_send" ,
92+ [UCP_OP_ID_TAG_SEND_SYNC ] = "tag_send_sync" ,
93+ [UCP_OP_ID_AM_SEND ] = "am_send" ,
94+ [UCP_OP_ID_AM_SEND_REPLY ] = "am_send_reply" ,
95+ [UCP_OP_ID_STREAM_SEND ] = "stream" ,
96+ [UCP_OP_ID_PUT ] = "put" ,
97+ [UCP_OP_ID_GET ] = "get" ,
98+ [UCP_OP_ID_AMO_POST ] = "amo_post" ,
99+ [UCP_OP_ID_AMO_FETCH ] = "amo_fetch" ,
100+ [UCP_OP_ID_AMO_CSWAP ] = "amo_cswap" ,
101+ [UCP_OP_ID_RNDV_SEND ] = "rndv_send" ,
102+ [UCP_OP_ID_RNDV_RECV ] = "rndv_recv" ,
103+ [UCP_OP_ID_RNDV_RECV_DROP ] = "rndv_recv_drop" ,
104+ [UCP_OP_ID_FAILOVER_AM_BCOPY ] = "failover_am_bcopy" ,
105+ [UCP_OP_ID_FAILOVER_PUT_SHORT ] = "failover_put_short" ,
106+ [UCP_OP_ID_FAILOVER_PUT_BCOPY ] = "failover_put_bcopy" ,
107+ [UCP_OP_ID_LAST ] = NULL
104108};
105109
106110const char * ucp_operation_descs [] = {
@@ -118,7 +122,10 @@ const char *ucp_operation_descs[] = {
118122 [UCP_OP_ID_RNDV_SEND ] = "rendezvous data send" ,
119123 [UCP_OP_ID_RNDV_RECV ] = "rendezvous data fetch" ,
120124 [UCP_OP_ID_RNDV_RECV_DROP ] = "rendezvous data drop" ,
121- [UCP_OP_ID_LAST ] = NULL
125+ [UCP_OP_ID_FAILOVER_AM_BCOPY ] = "failover replay active message" ,
126+ [UCP_OP_ID_FAILOVER_PUT_SHORT ] = "failover replay short put" ,
127+ [UCP_OP_ID_FAILOVER_PUT_BCOPY ] = "failover replay buffered put" ,
128+ [UCP_OP_ID_LAST ] = NULL
122129};
123130
124131unsigned ucp_protocols_count (void )
0 commit comments