File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ int mca_pml_ob1_progress(void)
67
67
{
68
68
int i , queue_length = opal_list_get_size (& mca_pml_ob1 .send_pending );
69
69
int j , completed_requests = 0 ;
70
- bool send_succedded ;
70
+ bool send_succeeded ;
71
71
72
72
completed_requests += mca_pml_ob1_process_pending_accelerator_async_copies ();
73
73
@@ -94,7 +94,7 @@ int mca_pml_ob1_progress(void)
94
94
case MCA_PML_OB1_SEND_PENDING_START :
95
95
MCA_PML_OB1_SEND_REQUEST_RESET (sendreq );
96
96
endpoint = sendreq -> req_endpoint ;
97
- send_succedded = false;
97
+ send_succeeded = false;
98
98
for (j = 0 ; j < (int )mca_bml_base_btl_array_get_size (& endpoint -> btl_eager ); j ++ ) {
99
99
mca_bml_base_btl_t * bml_btl ;
100
100
int rc ;
@@ -103,12 +103,12 @@ int mca_pml_ob1_progress(void)
103
103
bml_btl = mca_bml_base_btl_array_get_next (& endpoint -> btl_eager );
104
104
rc = mca_pml_ob1_send_request_start_btl (sendreq , bml_btl );
105
105
if ( OPAL_LIKELY (OMPI_SUCCESS == rc ) ) {
106
- send_succedded = true;
106
+ send_succeeded = true;
107
107
completed_requests ++ ;
108
108
break ;
109
109
}
110
110
}
111
- if ( false == send_succedded ) {
111
+ if ( false == send_succeeded ) {
112
112
add_request_to_send_pending (sendreq , MCA_PML_OB1_SEND_PENDING_START , true);
113
113
}
114
114
}
You can’t perform that action at this time.
0 commit comments