Skip to content

Commit e43589a

Browse files
committed
v1.20.1
Signed-off-by: Jianxin Xiong <[email protected]>
1 parent 8286157 commit e43589a

File tree

5 files changed

+22
-5
lines changed

5 files changed

+22
-5
lines changed

AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ Evgeny Leksikov <[email protected]>
7676
Ezra Kissel <[email protected]>
7777
Firas Jahjah <[email protected]>
7878
Frank Zago <[email protected]>
79+
Franz Pöschel <[email protected]>
7980
8081
Gal Pressman <[email protected]>
8182
Gengbin Zheng <[email protected]>

NEWS.md

+16
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ v1.20.1, Mon Jan 22, 2024
1010
=========================
1111

1212
## Core
13+
1314
- hmem/ze: Change the library name passed to dlopen
1415
- hmem/ze: map device id to physical device
1516
- hmem/ze: skip duplicate initialization
@@ -22,6 +23,7 @@ v1.20.1, Mon Jan 22, 2024
2223
- man: Update EFA docs for FI_EFA_INTER_MIN_READ_WRITE_SIZE
2324

2425
## EFA
26+
2527
- efa_rdm_ep_record_tx_op_submitted() rm peer lookup
2628
- Remove peer lookup from efa_rdm_pke_sendv()
2729
- Make handshake response use txe
@@ -45,23 +47,37 @@ v1.20.1, Mon Jan 22, 2024
4547
- Fix a typo in configure.m4
4648
- Make runt_size aligned
4749

50+
## NetDir
51+
52+
- Add missing unlock in error path of nd_send_ack()
53+
4854
## OPX
55+
4956
- Initialize cq error data size
5057

5158
## RXM
59+
5260
- Fix data error with FI_OFI_RXM_USE_RNDV_WRITE=1
5361

5462
## SHM
63+
64+
- Fix coverity issue about resource leak
65+
- Adjust the order of smr_region fields.
5566
- Allocate peer device fds dynamically
5667

5768
## Util
69+
70+
- Fix coverity issue about missing lock
71+
- Implement timeout in util_wait_yield_run()
5872
- Fix bug in util_cq startup error case
5973
- util_mem_hooks: add missing parantheses
6074

6175
## Verbs
76+
6277
- Windows: Resolve regression in user data retrieval
6378

6479
## Fabtests
80+
6581
- efa: Close ibv device after use
6682
- efa: Get device MR limit from ibv_query_device
6783
- efa: Add simple unexpected test to MR exhaustion test

configure.ac

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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.
@@ -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.20.1rc1], [[email protected]])
12+
AC_INIT([libfabric], [1.20.1], [[email protected]])
1313
AC_CONFIG_SRCDIR([src/fabric.c])
1414
AC_CONFIG_AUX_DIR(config)
1515
AC_CONFIG_MACRO_DIR(config)

fabtests/configure.ac

+2-2
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.20.1rc1], [[email protected]])
8+
AC_INIT([fabtests], [1.20.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

+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.20.1rc1"
259+
#define PACKAGE_VERSION "1.20.1"
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)