1
1
openmpi/ompi/mca/osc/sm/Makefile.am
Nathan Hjelm 6ec9c6c422 osc/sm: return ompi_request_empty for all request ops
Only one field is valid for RMA requests: MPI_ERROR. This field is set
to the correct value in ompi_request_empty so there is no reason to
allocate and keep track of osc/sm requests because they are always
complete on return. Since we are no longer using the osc/sm request
structure or free list they are now removed.

Closes trac:4723

Tracking this issue with the CMR. Brad, can you verify the issue is indeed fixed.

cmr=v1.8.2:reviewer=bbenton

This commit was SVN r32009.

The following Trac tickets were found above:
  Ticket 4723 --> https://svn.open-mpi.org/trac/ompi/ticket/4723
2014-06-17 04:27:02 +00:00

43 строки
1.0 KiB
Makefile

#
# Copyright (c) 2011 Sandia National Laboratories. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
EXTRA_DIST =
sm_sources = \
osc_sm.h \
osc_sm_comm.c \
osc_sm_component.c \
osc_sm_active_target.c \
osc_sm_passive_target.c
AM_CPPFLAGS = $(osc_sm_CPPFLAGS)
# Make the output library in this directory, and name it either
# mca_<type>_<name>.la (for DSO builds) or libmca_<type>_<name>.la
# (for static builds).
if MCA_BUILD_ompi_osc_sm_DSO
component_noinst =
component_install = mca_osc_sm.la
else
component_noinst = libmca_osc_sm.la
component_install =
endif
mcacomponentdir = $(pkglibdir)
mcacomponent_LTLIBRARIES = $(component_install)
mca_osc_sm_la_SOURCES = $(sm_sources)
mca_osc_sm_la_LIBADD = $(osc_sm_LIBS)
mca_osc_sm_la_LDFLAGS = -module -avoid-version $(osc_sm_LDFLAGS)
noinst_LTLIBRARIES = $(component_noinst)
libmca_osc_sm_la_SOURCES = $(sm_sources)
libmca_osc_sm_la_LIBADD = $(osc_sm_LIBS)
libmca_osc_sm_la_LDFLAGS = -module -avoid-version $(osc_sm_LDFLAGS)