Skip to content

Commit ea52cb5

Browse files
committed
v2.3.0
Signed-off-by: Jianxin Xiong <[email protected]>
1 parent 7f8d6be commit ea52cb5

File tree

6 files changed

+15
-4
lines changed

6 files changed

+15
-4
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,7 @@ Steven Dashevsky <[email protected]>
292292
Steven Vormwald <[email protected]>
293293
Sung-Eun Choi <[email protected]>
294294
Sung-Eun Choi <[email protected]>
295+
Sunita Nadampalli <[email protected]>
295296
Sylvain Didelot <[email protected]>
296297
Sylvain Didelot <[email protected]>
297298

NEWS.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ v2.3.0, Mon September 15, 2025
2424

2525
## CXI ##
2626

27+
- Fix debug assert in fi_close of counter
28+
- Fix configure typo
29+
- Add criterion test flag to configure
30+
- Return correct error for HTTP 400
2731
- Fix service allocation
2832
- Fix bug related exp next seqn
2933
- Fix bug related concurrent mcast's
@@ -55,6 +59,11 @@ v2.3.0, Mon September 15, 2025
5559

5660
## EFA ##
5761

62+
- Make implicit AV unbounded by default
63+
- Increase default efa-direct ibvcq size
64+
- Fix logging of GID in efa_rdm_cq_lookup_raw_addr
65+
- Rename efadv_cq_attr db to doorbell
66+
- Only build EFA provider on applicable linux platforms
5867
- Fix the pkt type derivation from ope
5968
- Fix the rx sgl in data path direct
6069
- Store evicted peers in a hashset and ignore future packets
@@ -139,6 +148,7 @@ v2.3.0, Mon September 15, 2025
139148

140149
## Util ##
141150

151+
- Configure `control_progress` with the user provided progress mode
142152
- Handle the new address format FI_SOCKADDR_IP
143153
- Add example directory with first example
144154
- Get srx lock in the caller of util_foreach_unspec

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.3.0rc2], [[email protected]])
13+
AC_INIT([libfabric], [2.3.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.3.0rc2], [[email protected]])
8+
AC_INIT([fabtests], [2.3.0], [[email protected]])
99
AC_CONFIG_AUX_DIR(config)
1010
AC_CONFIG_MACRO_DIR(config)
1111
AC_CONFIG_HEADERS(config.h)

include/rdma/fabric.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ extern "C" {
7373
#endif
7474

7575
#define FI_MAJOR_VERSION 2
76-
#define FI_MINOR_VERSION 2
76+
#define FI_MINOR_VERSION 3
7777
#define FI_REVISION_VERSION 0
7878

7979
/* Removing these breaks the build for some apps.

include/windows/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@
262262
#define PACKAGE_TARNAME PACKAGE
263263

264264
/* Define to the version of this package. */
265-
#define PACKAGE_VERSION "2.3.0rc2"
265+
#define PACKAGE_VERSION "2.3.0"
266266

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

0 commit comments

Comments
 (0)