Skip to content

Commit 7fa921d

Browse files
authored
Fix: RDMA RX bridge creation, LIBFABRIC version (#416)
1 parent 3af1807 commit 7fa921d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

media-proxy/src/mesh/manager_bridges.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,9 +257,10 @@ int BridgesManager::create_bridge(context::Context& ctx, Connection*& bridge,
257257
// Create Ingress RDMA Bridge
258258
} else if (cfg.kind == Kind::receiver) {
259259
auto ingress_bridge = new(std::nothrow) RdmaRx;
260-
if (!ingress_bridge)
260+
if (!ingress_bridge) {
261261
free(_rdma_provider_dup);
262262
return -ENOMEM;
263+
}
263264

264265
req.type = is_rx;
265266

versions.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ IRDMA_VER=1.16.10
88
IRDMA_DMID=843933
99
JPEGXS_VER=e1030c6c8ee2fb05b76c3fa14cccf8346db7a1fa
1010
JSON_C_VER=0.18-20240915
11-
LIBFABRIC_VER=v2.2.0
11+
LIBFABRIC_VER=v2.0.0
1212
LIBFDT_VER=v1.7.2
1313
LIBSDL2_VER=2.30.9
1414
MTL_VER=v25.02

0 commit comments

Comments
 (0)