Skip to content

Commit 2182f99

Browse files
committed
v2.2.0
Signed-off-by: Jianxin Xiong <[email protected]>
1 parent 87320db commit 2182f99

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

NEWS.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,13 @@ v2.2.0, Mon June 30, 2025
5555

5656
## EFA
5757

58+
- Update error message for invalid MRs
59+
- Set IBV_ACCESS_LOCAL_WRITE for FI_REMOTE_WRITE
60+
- Update packet printing functions
61+
- Avoid iteration when cuda_api_permitted is false
62+
- Do not add explicit MRs from application to MR cache
63+
- Move peer bufpool to endpoint
64+
- Move RDMA check functions to efa_rdm_ep.h
5865
- Add detailed logging of device enumeration and selection
5966
- Extend domain ops to open CQ with external memory
6067
- Extend domain ops to allow querying of QP and CQ attributes
@@ -112,6 +119,10 @@ v2.2.0, Mon June 30, 2025
112119
- Cornelis Networks OPX provider upstream April 19, 2025
113120
- Make room for new RPC field in fid_ep
114121

122+
## PSM3
123+
124+
- Update psm3 to match IEFS 12.1.0.0 release
125+
115126
## RXD
116127

117128
- Add an environment variable to control FI_RESCAN
@@ -129,6 +140,7 @@ v2.2.0, Mon June 30, 2025
129140

130141
## SHM
131142

143+
- Add shm rename and retry
132144
- Fix srx entry cleanup
133145
- Acquire ep lock when freeing entries
134146
- Don't run smr progress if region isn't initialized
@@ -160,6 +172,8 @@ v2.2.0, Mon June 30, 2025
160172

161173
## Verbs
162174

175+
- Avoid holding vrb_info_mutex when reloading interfaces
176+
- Use a separate lock for provider initialization
163177
- Register vrb_info_mutex in util_prov
164178
- Code clean up.
165179
- Optimize init info.
@@ -179,6 +193,8 @@ v2.2.0, Mon June 30, 2025
179193

180194
## Fabtests
181195

196+
- Document limitations of fi_rma_pinpong
197+
- Add additional_env to ClientServerTest
182198
- Fix leak of dmabuf fd
183199
- Define ft_hmem_put_dmabuf_fd
184200
- efa: Make FI_EFA_IFACE tests check the Libfabric build

configure.ac

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

1212
AC_PREREQ([2.60])
13-
AC_INIT([libfabric], [2.2.0rc2], [[email protected]])
13+
AC_INIT([libfabric], [2.2.0], [[email protected]])
1414
AC_CONFIG_SRCDIR([src/fabric.c])
1515
AC_CONFIG_AUX_DIR(config)
1616
AC_CONFIG_MACRO_DIR(config)

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], [2.2.0rc2], [[email protected]])
8+
AC_INIT([fabtests], [2.2.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
@@ -256,7 +256,7 @@
256256
#define PACKAGE_TARNAME PACKAGE
257257

258258
/* Define to the version of this package. */
259-
#define PACKAGE_VERSION "2.2.0rc2"
259+
#define PACKAGE_VERSION "2.2.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)