Skip to content

Commit f85be90

Browse files
committed
v1.19.1
Signed-off-by: Jianxin Xiong <[email protected]>
1 parent 14db576 commit f85be90

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ Evgeny Leksikov <[email protected]>
7575
Ezra Kissel <[email protected]>
7676
Firas Jahjah <[email protected]>
7777
Frank Zago <[email protected]>
78+
Franz Pöschel <[email protected]>
7879
7980
Gal Pressman <[email protected]>
8081
Gengbin Zheng <[email protected]>

NEWS.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,17 @@ v1.19.1, Mon Jan 22, 2024
6666
- Add writedata RNR fabtest
6767
- Correct typo in RMA context type
6868

69+
## NetDir
70+
71+
- Add missing unlock in error path of nd_send_ack()
72+
6973
## RXM
7074

7175
- Fix data error with FI_OFI_RXM_USE_RNDV_WRITE=1
7276

7377
## SHM
7478

79+
- Fix coverity issue about resource leak
7580
- Allocate peer device fds dynamically
7681
- Add memory barrier before updating resp for atomic
7782
- Use peer cntr inc ops in smr_progress_cmd
@@ -89,6 +94,8 @@ v1.19.1, Mon Jan 22, 2024
8994

9095
## Util
9196

97+
- Fix coverity issue about missing lock
98+
- Implement timeout in util_wait_yield_run()
9299
- memhooks: Fix a bug when calculating mprotect region
93100

94101
## 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-2021 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.19.1rc1], [[email protected]])
11+
AC_INIT([libfabric], [1.19.1], [[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-2021 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.19.1rc1], [[email protected]])
8+
AC_INIT([fabtests], [1.19.1], [[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.19.1rc1"
168+
#define PACKAGE_VERSION "1.19.1"
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)