@@ -772,9 +772,9 @@ static int ompi_osc_rdma_get_contig (ompi_osc_rdma_sync_t *sync, ompi_osc_rdma_p
772
772
}
773
773
774
774
static inline int ompi_osc_rdma_put_w_req (ompi_osc_rdma_sync_t * sync , const void * origin_addr , int origin_count ,
775
- struct ompi_datatype_t * origin_datatype , ompi_osc_rdma_peer_t * peer ,
775
+ ompi_datatype_t * origin_datatype , ompi_osc_rdma_peer_t * peer ,
776
776
OPAL_PTRDIFF_TYPE target_disp , int target_count ,
777
- struct ompi_datatype_t * target_datatype , ompi_osc_rdma_request_t * request )
777
+ ompi_datatype_t * target_datatype , ompi_osc_rdma_request_t * request )
778
778
{
779
779
ompi_osc_rdma_module_t * module = sync -> module ;
780
780
mca_btl_base_registration_handle_t * target_handle ;
@@ -807,9 +807,9 @@ static inline int ompi_osc_rdma_put_w_req (ompi_osc_rdma_sync_t *sync, const voi
807
807
ompi_osc_rdma_put_contig , false);
808
808
}
809
809
810
- static inline int ompi_osc_rdma_get_w_req (ompi_osc_rdma_sync_t * sync , void * origin_addr , int origin_count , struct ompi_datatype_t * origin_datatype ,
810
+ static inline int ompi_osc_rdma_get_w_req (ompi_osc_rdma_sync_t * sync , void * origin_addr , int origin_count , ompi_datatype_t * origin_datatype ,
811
811
ompi_osc_rdma_peer_t * peer , OPAL_PTRDIFF_TYPE source_disp , int source_count ,
812
- struct ompi_datatype_t * source_datatype , ompi_osc_rdma_request_t * request )
812
+ ompi_datatype_t * source_datatype , ompi_osc_rdma_request_t * request )
813
813
{
814
814
ompi_osc_rdma_module_t * module = sync -> module ;
815
815
mca_btl_base_registration_handle_t * source_handle ;
@@ -841,9 +841,9 @@ static inline int ompi_osc_rdma_get_w_req (ompi_osc_rdma_sync_t *sync, void *ori
841
841
source_handle , source_count , source_datatype , request ,
842
842
module -> selected_btl -> btl_get_limit , ompi_osc_rdma_get_contig , true);
843
843
}
844
- int ompi_osc_rdma_put (const void * origin_addr , int origin_count , struct ompi_datatype_t * origin_datatype ,
844
+ int ompi_osc_rdma_put (const void * origin_addr , int origin_count , ompi_datatype_t * origin_datatype ,
845
845
int target_rank , OPAL_PTRDIFF_TYPE target_disp , int target_count ,
846
- struct ompi_datatype_t * target_datatype , ompi_win_t * win )
846
+ ompi_datatype_t * target_datatype , ompi_win_t * win )
847
847
{
848
848
ompi_osc_rdma_module_t * module = GET_MODULE (win );
849
849
ompi_osc_rdma_peer_t * peer ;
@@ -862,10 +862,10 @@ int ompi_osc_rdma_put (const void *origin_addr, int origin_count, struct ompi_da
862
862
target_count , target_datatype , NULL );
863
863
}
864
864
865
- int ompi_osc_rdma_rput (const void * origin_addr , int origin_count , struct ompi_datatype_t * origin_datatype ,
865
+ int ompi_osc_rdma_rput (const void * origin_addr , int origin_count , ompi_datatype_t * origin_datatype ,
866
866
int target_rank , OPAL_PTRDIFF_TYPE target_disp , int target_count ,
867
- struct ompi_datatype_t * target_datatype , struct ompi_win_t * win ,
868
- struct ompi_request_t * * request )
867
+ ompi_datatype_t * target_datatype , ompi_win_t * win ,
868
+ ompi_request_t * * request )
869
869
{
870
870
ompi_osc_rdma_module_t * module = GET_MODULE (win );
871
871
ompi_osc_rdma_peer_t * peer ;
@@ -897,9 +897,9 @@ int ompi_osc_rdma_rput (const void *origin_addr, int origin_count, struct ompi_d
897
897
return OMPI_SUCCESS ;
898
898
}
899
899
900
- int ompi_osc_rdma_get (void * origin_addr , int origin_count , struct ompi_datatype_t * origin_datatype ,
900
+ int ompi_osc_rdma_get (void * origin_addr , int origin_count , ompi_datatype_t * origin_datatype ,
901
901
int source_rank , OPAL_PTRDIFF_TYPE source_disp , int source_count ,
902
- struct ompi_datatype_t * source_datatype , struct ompi_win_t * win )
902
+ ompi_datatype_t * source_datatype , ompi_win_t * win )
903
903
{
904
904
ompi_osc_rdma_module_t * module = GET_MODULE (win );
905
905
ompi_osc_rdma_peer_t * peer ;
@@ -918,10 +918,10 @@ int ompi_osc_rdma_get (void *origin_addr, int origin_count, struct ompi_datatype
918
918
source_disp , source_count , source_datatype , NULL );
919
919
}
920
920
921
- int ompi_osc_rdma_rget (void * origin_addr , int origin_count , struct ompi_datatype_t * origin_datatype ,
921
+ int ompi_osc_rdma_rget (void * origin_addr , int origin_count , ompi_datatype_t * origin_datatype ,
922
922
int source_rank , OPAL_PTRDIFF_TYPE source_disp , int source_count ,
923
- struct ompi_datatype_t * source_datatype , struct ompi_win_t * win ,
924
- struct ompi_request_t * * request )
923
+ ompi_datatype_t * source_datatype , ompi_win_t * win ,
924
+ ompi_request_t * * request )
925
925
{
926
926
ompi_osc_rdma_module_t * module = GET_MODULE (win );
927
927
ompi_osc_rdma_peer_t * peer ;
0 commit comments