Skip to content

Commit 208c2d2

Browse files
committed
Typo in ob1 comments
Seems like a copy/pasted typo in ob1 comments Signed-off-by: Julien EMMANUEL <[email protected]>
1 parent 3f02faf commit 208c2d2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

ompi/mca/pml/ob1/pml_ob1_irecv.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ int mca_pml_ob1_recv(void *addr,
135135
ompi_request_wait_completion(&recvreq->req_recv.req_base.req_ompi);
136136

137137
if( true == recvreq->req_recv.req_base.req_pml_complete ) {
138-
/* make buffer defined when the request is compeleted */
138+
/* make buffer defined when the request is completed */
139139
MEMCHECKER(
140140
memchecker_call(&opal_memchecker_base_mem_defined,
141141
recvreq->req_recv.req_base.req_addr,
@@ -151,7 +151,7 @@ int mca_pml_ob1_recv(void *addr,
151151
rc = recvreq->req_recv.req_base.req_ompi.req_status.MPI_ERROR;
152152

153153
if (recvreq->req_recv.req_base.req_pml_complete) {
154-
/* make buffer defined when the request is compeleted,
154+
/* make buffer defined when the request is completed,
155155
and before releasing the objects. */
156156
MEMCHECKER(
157157
memchecker_call(&opal_memchecker_base_mem_defined,

ompi/mca/pml/ob1/pml_ob1_recvreq.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ static int mca_pml_ob1_recv_request_free(struct ompi_request_t** request)
8181
&(recvreq->req_recv.req_base), PERUSE_RECV );
8282

8383
if( true == recvreq->req_recv.req_base.req_pml_complete ) {
84-
/* make buffer defined when the request is compeleted,
84+
/* make buffer defined when the request is completed,
8585
and before releasing the objects. */
8686
MEMCHECKER(
8787
memchecker_call(&opal_memchecker_base_mem_defined,

ompi/mca/pml/ob1/pml_ob1_sendreq.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ static int mca_pml_ob1_send_request_free(struct ompi_request_t** request)
107107
&(sendreq->req_send.req_base), PERUSE_SEND );
108108

109109
if( true == sendreq->req_send.req_base.req_pml_complete ) {
110-
/* make buffer defined when the request is compeleted,
110+
/* make buffer defined when the request is completed,
111111
and before releasing the objects. */
112112
MEMCHECKER(
113113
memchecker_call(&opal_memchecker_base_mem_defined,

0 commit comments

Comments
 (0)