Skip to content

Commit eaf1bfd

Browse files
committed
v1.18.3
Signed-off-by: Jianxin Xiong <[email protected]>
1 parent 9fe8d81 commit eaf1bfd

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ Evgeny Leksikov <[email protected]>
7272
Ezra Kissel <[email protected]>
7373
Firas Jahjah <[email protected]>
7474
Frank Zago <[email protected]>
75+
Franz Pöschel <[email protected]>
7576
7677
Gal Pressman <[email protected]>
7778
Gengbin Zheng <[email protected]>

NEWS.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,18 @@ v1.18.3, Mon Jan 22, 2024
3131
- Add writedata RNR fabtest
3232
- Handle RNRs from RDMA writedata
3333

34+
## NetDir
35+
36+
- Add missing unlock in error path of nd_send_ack()
37+
- Release lock prior to returning from nd_send_ack
38+
3439
## RXM
3540

3641
- Fix data error with FI_OFI_RXM_USE_RNDV_WRITE=1
3742

3843
## SHM
3944

45+
- Fix coverity issue about resource leak
4046
- Allocate peer device fds dynamically
4147

4248
## TCP
@@ -51,6 +57,8 @@ v1.18.3, Mon Jan 22, 2024
5157

5258
## Util
5359

60+
- Fix coverity issue about missing lock
61+
- Implement timeout in util_wait_yield_run()
5462
- memhooks: Fix a bug when calculating mprotect region
5563

5664
## Verbs

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
dnl
22
dnl Copyright (c) 2016 Cisco Systems, Inc. All rights reserved.
3-
dnl Copyright (c) 2019-2023 Intel, Inc. All rights reserved.
3+
dnl Copyright (c) 2019-2024 Intel, Inc. All rights reserved.
44
dnl Copyright (c) 2019-2020 Amazon.com, Inc. or its affiliates. All rights reserved.
55
dnl (C) Copyright 2020 Hewlett Packard Enterprise Development LP
66
dnl Copyright (c) 2022 DataDirect Networks, Inc. All rights reserved.
77
dnl
88
dnl Process this file with autoconf to produce a configure script.
99

1010
AC_PREREQ([2.60])
11-
AC_INIT([libfabric], [1.18.3rc1], [[email protected]])
11+
AC_INIT([libfabric], [1.18.3], [[email protected]])
1212
AC_CONFIG_SRCDIR([src/fabric.c])
1313
AC_CONFIG_AUX_DIR(config)
1414
AC_CONFIG_MACRO_DIR(config)

fabtests/configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
dnl
22
dnl Copyright (c) 2016-2017 Cisco Systems, Inc. All rights reserved.
3-
dnl Copyright (c) 2018-2023 Intel Corporation, Inc. All rights reserved.
3+
dnl Copyright (c) 2018-2024 Intel Corporation, Inc. All rights reserved.
44
dnl
55
dnl Process this file with autoconf to produce a configure script.
66

77
AC_PREREQ(2.57)
8-
AC_INIT([fabtests], [1.18.3rc1], [[email protected]])
8+
AC_INIT([fabtests], [1.18.3], [[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
@@ -174,7 +174,7 @@
174174
#define PACKAGE_TARNAME PACKAGE
175175

176176
/* Define to the version of this package. */
177-
#define PACKAGE_VERSION "1.18.3rc1"
177+
#define PACKAGE_VERSION "1.18.3"
178178

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

0 commit comments

Comments
 (0)