@@ -79,9 +79,8 @@ int mca_coll_ucc_alltoallv(const void *sbuf, const int *scounts,
7979 return OMPI_SUCCESS ;
8080fallback :
8181 UCC_VERBOSE (3 , "running fallback alltoallv" );
82- return ucc_module -> previous_alltoallv (sbuf , scounts , sdisps , sdtype ,
83- rbuf , rcounts , rdisps , rdtype ,
84- comm , ucc_module -> previous_alltoallv_module );
82+ return mca_coll_ucc_call_previous (alltoallv , ucc_module ,
83+ sbuf , scounts , sdisps , sdtype , rbuf , rcounts , rdisps , rdtype , comm );
8584}
8685
8786int mca_coll_ucc_ialltoallv (const void * sbuf , const int * scounts ,
@@ -109,7 +108,6 @@ int mca_coll_ucc_ialltoallv(const void *sbuf, const int *scounts,
109108 if (coll_req ) {
110109 mca_coll_ucc_req_free ((ompi_request_t * * )& coll_req );
111110 }
112- return ucc_module -> previous_ialltoallv (sbuf , scounts , sdisps , sdtype ,
113- rbuf , rcounts , rdisps , rdtype ,
114- comm , request , ucc_module -> previous_ialltoallv_module );
111+ return mca_coll_ucc_call_previous (ialltoallv , ucc_module ,
112+ sbuf , scounts , sdisps , sdtype , rbuf , rcounts , rdisps , rdtype , comm , request );
115113}
0 commit comments