From 53afa314dd74174751db981510255d855664110e Mon Sep 17 00:00:00 2001 From: Sean Hefty Date: Thu, 4 May 2017 11:37:10 -0700 Subject: [PATCH 1/4] fabric: Update API version to 1.4.2 Signed-off-by: Sean Hefty --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index a4c5a24ab4b..12e0c1c491b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -126,7 +126,7 @@ src_libfabric_la_LDFLAGS = src_libfabric_la_LIBADD = src_libfabric_la_DEPENDENCIES = libfabric.map -src_libfabric_la_LDFLAGS += -version-info 3:2:2 -export-dynamic \ +src_libfabric_la_LDFLAGS += -version-info 3:3:2 -export-dynamic \ $(libfabric_version_script) rdmainclude_HEADERS += \ $(top_srcdir)/include/rdma/fabric.h \ From 98de4ff2f257525feea42d6ded1f74997c56f41b Mon Sep 17 00:00:00 2001 From: Sean Hefty Date: Thu, 4 May 2017 11:44:14 -0700 Subject: [PATCH 2/4] AUTHOR: Add new author Signed-off-by: Sean Hefty --- AUTHORS | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AUTHORS b/AUTHORS index fb2b5d53171..0ee474243e0 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,4 +1,5 @@ Ajay Kulkarni +Alexia Ingerson Ana Guerrero López Andrew Friedley Arun C Ilango @@ -12,6 +13,7 @@ Chen Zhao Chuck Fossen Dave Goodell Dmitry Durnov +Dmitry Gladkov Erik Paulson Evan Harvey Evan Harvey From c88106cd66348ddc529581ec69a3d1ff501dbb4c Mon Sep 17 00:00:00 2001 From: Sean Hefty Date: Thu, 4 May 2017 11:59:54 -0700 Subject: [PATCH 3/4] NEWS: Update for 1.4.2 release Signed-off-by: Sean Hefty --- NEWS.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/NEWS.md b/NEWS.md index d964d511991..54bc0663751 100644 --- a/NEWS.md +++ b/NEWS.md @@ -5,6 +5,38 @@ This file contains the main features as well as overviews of specific bug fixes (and other actions) for each version of Libfabric since version 1.0. +v1.4.2, Fri May 5, 2017 +======================== + +## Core + +- Fix for OS X clock_gettime() portability issue. + +## PSM provider notes + +- Updated default counter wait object for improved performance +- Fix multi-threaded RMA progress stalls + +## PSM2 provider notes + +- Updated default counter wait object for improved performance +- Fix multi-threaded RMA progress stalls + +## Sockets provider notes + +- Fix error in fi_cq_sreadfrom aborting before timeout expires +- Set atomic iov count correct correctly inside fi_atomicv + +## Verbs provider notes + +- Fix handling of apps that call fork. Move ibv_fork_init() before + calling any other verbs call. +- Fix crash in fi_write when connection is not yet established and + write data size is below inline threshold. +- Fix issues not handling multiple ipoib interfaces +- Reduce lock contention on buffer pools in send/completion handling + code. + v1.4.1, Fri Feb 3, 2017 ======================== From abf08a1bdf74cfc5ba24ed6b12c1452d7a775494 Mon Sep 17 00:00:00 2001 From: Sean Hefty Date: Thu, 4 May 2017 16:08:43 -0700 Subject: [PATCH 4/4] configure: Bump version to 1.4.2rc1 Signed-off-by: Sean Hefty --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 2eb49031b53..a49ac7e4da0 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ dnl dnl Process this file with autoconf to produce a configure script. AC_PREREQ([2.60]) -AC_INIT([libfabric], [1.4.2a1], [ofiwg@lists.openfabrics.org]) +AC_INIT([libfabric], [1.4.2rc1], [ofiwg@lists.openfabrics.org]) AC_CONFIG_SRCDIR([src/fabric.c]) AC_CONFIG_AUX_DIR(config) AC_CONFIG_MACRO_DIR(config)