Skip to content

Commit b5c35d1

Browse files
author
Sean Hefty
committed
v1.12.0 release
Signed-off-by: Sean Hefty <[email protected]>
1 parent a282bbd commit b5c35d1

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

NEWS.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ v1.12.0, Mon Mar 8, 2021
2323
- Support gdrcopy in addition to cudaMemcpy to avoid deadlocks
2424
- Properly mark if addresses support only local communication
2525
- Prevent providers from layering over each other non-optimally
26+
- Fix pollfds abstraction to fix possible use after free
2627

2728
## EFA
2829
- Added support for FI_DELIVERY_COMPLETE via an acknowledgment packet in the
@@ -57,7 +58,9 @@ v1.12.0, Mon Mar 8, 2021
5758

5859
## PSM3
5960

60-
- New Intel provider optimized for verbs UD QPs
61+
- New core provider for psm3.x protocol over verbs UD interfaces, with
62+
additional features over Intel E810 RoCEv2 capable NICs
63+
- See fi_psm3.7 man page for more details
6164

6265
## RxD
6366

@@ -109,6 +112,7 @@ v1.12.0, Mon Mar 8, 2021
109112
- Handle FI_SYNC_ERR flag on AV insert
110113
- Improve destination IP address checks
111114
- Minor coding cleanups based on static code analysis
115+
- Fix possible use after free access in Rx progress handling
112116

113117
## TCP
114118

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dnl
77
dnl Process this file with autoconf to produce a configure script.
88

99
AC_PREREQ([2.60])
10-
AC_INIT([libfabric], [1.12.0rc3], [[email protected]])
10+
AC_INIT([libfabric], [1.12.0], [[email protected]])
1111
AC_CONFIG_SRCDIR([src/fabric.c])
1212
AC_CONFIG_AUX_DIR(config)
1313
AC_CONFIG_MACRO_DIR(config)

fabtests/COPYING

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Some parts of the source are 3rd party code which uses MIT license.
77
The description and requirements of the license are available in
88
later part of this file.
99

10-
Copyright (c) 2015-2020 Intel Corporation. All rights reserved.
10+
Copyright (c) 2015-2021 Intel Corporation. All rights reserved.
1111
Copyright (c) 2016-2018 Cisco Systems, Inc. All rights reserved.
1212

1313
==================================================================

fabtests/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dnl
55
dnl Process this file with autoconf to produce a configure script.
66

77
AC_PREREQ(2.57)
8-
AC_INIT([fabtests], [1.12.0rc3], [[email protected]])
8+
AC_INIT([fabtests], [1.12.0], [[email protected]])
99
AC_CONFIG_AUX_DIR(config)
1010
AC_CONFIG_MACRO_DIR(config)
1111
AC_CONFIG_HEADERS(config.h)

include/windows/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@
165165
#define PACKAGE_TARNAME PACKAGE
166166

167167
/* Define to the version of this package. */
168-
#define PACKAGE_VERSION "1.12.0rc3"
168+
#define PACKAGE_VERSION "1.12.0"
169169

170170
/* Define to the full name and version of this package. */
171171
#define PACKAGE_STRING PACKAGE_NAME " " PACKAGE_VERSION

0 commit comments

Comments
 (0)