Skip to content

Commit

Permalink
prov/rxm: Move tagged ops into own source file
Browse files Browse the repository at this point in the history
Separate the tagged ops implementation to rxm_tagged.c
out of rxm_ep.c.  This makes it easier to identify the
tagged related implementation.

Minor renames and white space adjustments.  No functional
changes to the code.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
  • Loading branch information
shefty committed Nov 18, 2021
1 parent 4402ad0 commit 9014b21
Show file tree
Hide file tree
Showing 6 changed files with 418 additions and 365 deletions.
1 change: 1 addition & 0 deletions libfabric.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,7 @@
<ClCompile Include="prov\rxm\src\rxm_attr.c" />
<ClCompile Include="prov\rxm\src\rxm_conn.c" />
<ClCompile Include="prov\rxm\src\rxm_msg.c" />
<ClCompile Include="prov\rxm\src\rxm_tagged.c" />
<ClCompile Include="prov\rxm\src\rxm_rma.c" />
<ClCompile Include="prov\rxm\src\rxm_cq.c" />
<ClCompile Include="prov\rxm\src\rxm_av.c" />
Expand Down
3 changes: 3 additions & 0 deletions libfabric.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,9 @@
<ClCompile Include="prov\rxm\src\rxm_msg.c">
<Filter>Source Files\prov\rxm\src</Filter>
</ClCompile>
<ClCompile Include="prov\rxm\src\rxm_tagged.c">
<Filter>Source Files\prov\rxm\src</Filter>
</ClCompile>
<ClCompile Include="src\iov.c">
<Filter>Source Files\src</Filter>
</ClCompile>
Expand Down
1 change: 1 addition & 0 deletions prov/rxm/Makefile.include
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ _rxm_files = \
prov/rxm/src/rxm_conn.c \
prov/rxm/src/rxm_ep.c \
prov/rxm/src/rxm_msg.c \
prov/rxm/src/rxm_tagged.c \
prov/rxm/src/rxm_cq.c \
prov/rxm/src/rxm_av.c \
prov/rxm/src/rxm_rma.c \
Expand Down
1 change: 1 addition & 0 deletions prov/rxm/src/rxm.h
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ extern struct fi_provider rxm_prov;
extern struct util_prov rxm_util_prov;

extern struct fi_ops_msg rxm_msg_ops;
extern struct fi_ops_tagged rxm_tagged_ops;
extern struct fi_ops_rma rxm_rma_ops;
extern struct fi_ops_rma rxm_rma_thru_ops;
extern struct fi_ops_atomic rxm_ops_atomic;
Expand Down
Loading

0 comments on commit 9014b21

Please sign in to comment.