Skip to content

Commit

Permalink
v1.12.0rc1
Browse files Browse the repository at this point in the history
Initial preparation for v1.12.0 release.

Signed-off-by: Sean Hefty <[email protected]>
  • Loading branch information
shefty committed Jan 29, 2021
1 parent ea0c3dc commit a5ea181
Show file tree
Hide file tree
Showing 6 changed files with 75 additions and 5 deletions.
7 changes: 7 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Ana Guerrero López <[email protected]>
Anatoliy Rozanov <[email protected]>
Andrew Friedley <[email protected]>
Andrey Lobanov <[email protected]>
Anthony Zinger <[email protected]>
Ao Li <[email protected]>
Arun C Ilango <[email protected]>
arun ilango <[email protected]>
Expand Down Expand Up @@ -61,6 +62,7 @@ Hui Zhou <[email protected]>
Ian Ziemba <[email protected]>
Ignacio Hernandez <[email protected]>
Ira Weiny <[email protected]>
iziemba <[email protected]>
Jaime Arteaga <[email protected]>
James Dinan <[email protected]>
James Shimek <[email protected]>
Expand All @@ -77,6 +79,7 @@ Jeff Squyres <[email protected]>
Jerome Berryhill <[email protected]>
Jerome Boyd Berryhill <[email protected]>
Jerome Soumagne <[email protected]>
Jiakun Yan <[email protected]>
Jianxin Xiong <[email protected]>
Jie Zhang <[email protected]>
Jim Snow <[email protected]>
Expand Down Expand Up @@ -118,6 +121,8 @@ Oblomov, Sergey <[email protected]>
Oblomov, Sergey <[email protected]>
OFIWG Bot <[email protected]>
Paolo Inaudi <[email protected]>
patrickbueb <[email protected]>
Patrick Bueb <[email protected]>
Patrick MacArthur <[email protected]>
Patrick McCormick <[email protected]>
Paul Coffman <[email protected]>
Expand Down Expand Up @@ -156,8 +161,10 @@ Thibault BREZILLON <[email protected]>
Thomas Smith <[email protected]>
Tony Zinger <[email protected]>
tonyzinger <[email protected]>
Trevor Hendricks <[email protected]>
Venkata Krishna Nimmagadda <[email protected]>
Venkata Krishna Nimmagadda <[email protected]>
Wei Zhang <[email protected]>
Wei Zhang <[email protected]>
Wesley Bland <[email protected]>
William Zhang <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion COPYING
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ licenses. You may choose to be licensed under the terms of the the
BSD license or the GNU General Public License (GPL) Version
2, both included below.

Copyright (c) 2015-2019 Intel Corporation. All rights reserved.
Copyright (c) 2015-2021 Intel Corporation. All rights reserved.
Copyright (c) 2015-2019 Cisco Systems, Inc. All rights reserved.

==================================================================
Expand Down
63 changes: 63 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,69 @@ 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.12.0, Wed Mar 10, 2021
=========================

## Core

## EFA

## RxM

## SHM

## Sockets

## TCP

## Util

## Verbs


v1.11.2, Tue Dec 15, 2020
=========================

## Core

- Handle data transfers > 4GB on OS X over tcp sockets
- Fixed spelling and syntax in man pages
- Fix pmem instruction checks

## EFA

- Use memory registration for emulated read protocol
- Update send paths to use app memory descriptor if available
- Remove unneeded check for local memory registration
- Do not install fork handler if EFA is not used
- Fix medium message RTM protocol
- Fix memory registration leak in error path
- Fix posting of REQ packets when using shm provider

## RxM

- Fix provider initialization when built as a dynamic library

## SHM

- Reverts SAR buffer locking patch
- Include correct header file for process_vm_readv/writev syscalls
- Skip atomic fetch processing for non-fetch operations

## TCP

- Fix swapping of address and CQ data in RMA inject path

## Util

- Fix error code returned for invalid AV flags
- Fix a bug finding the end of a page when the address is aligned

## Verbs

- Fix build warning in XRC CM log messages
- Fix build warnings in debug macros

v1.11.1, Fri Oct 9, 2021
========================

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.12.0a1], [[email protected]])
AC_INIT([libfabric], [1.12.0rc1], [[email protected]])
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.11.0], [[email protected]])
AC_INIT([fabtests], [1.12.0rc1], [[email protected]])
AC_CONFIG_AUX_DIR(config)
AC_CONFIG_MACRO_DIR(config)
AC_CONFIG_HEADERS(config.h)
Expand Down
4 changes: 2 additions & 2 deletions include/windows/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@
#define PACKAGE_TARNAME PACKAGE

/* Define to the version of this package. */
#define PACKAGE_VERSION "1.12.0a1"
#define PACKAGE_VERSION "1.12.0rc1"

/* Define to the full name and version of this package. */
#define PACKAGE_STRING PACKAGE_NAME " " PACKAGE_VERSION
Expand Down Expand Up @@ -195,7 +195,7 @@
/* Version number of package */
#define _FI_EXP(s) #s
#define _FI_TO_STRING(s) _FI_EXP(s)
#define VERSION _FI_TO_STRING(FI_MAJOR_VERSION) "." _FI_TO_STRING(FI_MINOR_VERSION) ".1a1"
#define VERSION _FI_TO_STRING(FI_MAJOR_VERSION) "." _FI_TO_STRING(FI_MINOR_VERSION) "." _FI_TO_STRING(FI_REVISION_VERSION)

#ifndef BUILD_ID
#define BUILD_ID ""
Expand Down

0 comments on commit a5ea181

Please sign in to comment.