Skip to content

Commit

Permalink
v1.16.1
Browse files Browse the repository at this point in the history
Signed-off-by: Sean Hefty <sean.hefty@intel.com>
  • Loading branch information
shefty committed Oct 7, 2022
1 parent 460abdf commit 619d9b3
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ src_libfabric_la_LIBADD =
src_libfabric_la_DEPENDENCIES = libfabric.map

if !EMBEDDED
src_libfabric_la_LDFLAGS += -version-info 20:0:19
src_libfabric_la_LDFLAGS += -version-info 20:1:19
endif
src_libfabric_la_LDFLAGS += -export-dynamic \
$(libfabric_version_script)
Expand Down
24 changes: 24 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,30 @@ bug fixes (and other actions) for each version of Libfabric since
version 1.0. New major releases include all fixes from minor
releases with earlier release dates.

v1.16.1, Fri Oct 7, 2022
========================

## EFA

- Flush MR cache when fork() is called

## RxM

- Disable 128-bit atomics

## SHM

- Add safeguards around peer mapping initialization
- Fix Ze IPC race condition on startup

## Verbs

- Add missing header file to release package

## Fabtests

- Add net provider test config files to release package

v1.16.0, Fri Sep 30, 2022
=========================

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dnl
dnl Process this file with autoconf to produce a configure script.

AC_PREREQ([2.60])
AC_INIT([libfabric], [1.16.0], [ofiwg@lists.openfabrics.org])
AC_INIT([libfabric], [1.16.1], [ofiwg@lists.openfabrics.org])
AC_CONFIG_SRCDIR([src/fabric.c])
AC_CONFIG_AUX_DIR(config)
AC_CONFIG_MACRO_DIR(config)
Expand Down
2 changes: 1 addition & 1 deletion fabtests/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dnl
dnl Process this file with autoconf to produce a configure script.

AC_PREREQ(2.57)
AC_INIT([fabtests], [1.16.0], [ofiwg@lists.openfabrics.org])
AC_INIT([fabtests], [1.16.1], [ofiwg@lists.openfabrics.org])
AC_CONFIG_AUX_DIR(config)
AC_CONFIG_MACRO_DIR(config)
AC_CONFIG_HEADERS(config.h)
Expand Down
2 changes: 1 addition & 1 deletion include/rdma/fabric.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ extern "C" {

#define FI_MAJOR_VERSION 1
#define FI_MINOR_VERSION 16
#define FI_REVISION_VERSION 0
#define FI_REVISION_VERSION 1

enum {
FI_PATH_MAX = 256,
Expand Down
2 changes: 1 addition & 1 deletion include/windows/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
#define PACKAGE_TARNAME PACKAGE

/* Define to the version of this package. */
#define PACKAGE_VERSION "1.16.0"
#define PACKAGE_VERSION "1.16.1"

/* Define to the full name and version of this package. */
#define PACKAGE_STRING PACKAGE_NAME " " PACKAGE_VERSION
Expand Down
3 changes: 2 additions & 1 deletion prov/verbs/Makefile.include
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ _verbs_files = \
prov/verbs/src/verbs_rma.c \
prov/verbs/src/verbs_dgram_ep_msg.c \
prov/verbs/src/verbs_dgram_av.c \
prov/verbs/include/ofi_verbs_priv.h
prov/verbs/include/ofi_verbs_priv.h \
prov/verbs/include/linux/verbs_osd.h

if HAVE_VERBS_DL
pkglib_LTLIBRARIES += libverbs-fi.la
Expand Down

0 comments on commit 619d9b3

Please sign in to comment.