Skip to content

Commit 1592196

Browse files
committed
v1.22.0
Signed-off-by: Jianxin Xiong <[email protected]>
1 parent d37f6fd commit 1592196

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

NEWS.md

+5
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ v1.22.0, Fri Jul 26, 2024
3535
## EFA
3636

3737
- General improvement and bug fixes
38+
- Handle recv cancel for zero copy recv
3839
- Avoid iterating EP list in CQ read
3940
- Add RDMA core errno for remote unknown peer
4041
- Map EFA errnos to Libfabric codes
@@ -52,6 +53,7 @@ v1.22.0, Fri Jul 26, 2024
5253

5354
## OPX
5455

56+
- Add missing file needed for fabric direct build to release package
5557
- Fix performance issue caused by not setting ACK bit in the single
5658
SDMA packet case
5759
- TID cache debug improvements
@@ -120,6 +122,8 @@ v1.22.0, Fri Jul 26, 2024
120122

121123
## Fabtests
122124

125+
- pytest/shm: reduce the msg size in test_unexpected_msg
126+
- Fix synapseai fabtests build
123127
- Add pytests for EFA zero-copy receive
124128
- Add benchmark option for `FI_OPT_MAX_MSG_SIZE`
125129
- benchmarks: Add synapseai support
@@ -153,6 +157,7 @@ v1.21.1, Fri July 26, 2024
153157

154158
## EFA
155159

160+
- Add tracepoints for rx pkt processing events
156161
- Destroy rx_atomrsp_pool during ep close.
157162
- Free user_info during ep close.
158163
- Use srx lock from domain directly

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dnl
99
dnl Process this file with autoconf to produce a configure script.
1010

1111
AC_PREREQ([2.60])
12-
AC_INIT([libfabric], [1.22.0rc2], [[email protected]])
12+
AC_INIT([libfabric], [1.22.0], [[email protected]])
1313
AC_CONFIG_SRCDIR([src/fabric.c])
1414
AC_CONFIG_AUX_DIR(config)
1515
AC_CONFIG_MACRO_DIR(config)

fabtests/configure.ac

+1-1
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.22.0rc2], [[email protected]])
8+
AC_INIT([fabtests], [1.22.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

+1-1
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@
256256
#define PACKAGE_TARNAME PACKAGE
257257

258258
/* Define to the version of this package. */
259-
#define PACKAGE_VERSION "1.22.0rc2"
259+
#define PACKAGE_VERSION "1.22.0"
260260

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

0 commit comments

Comments
 (0)