Skip to content

Commit 4ef6970

Browse files
authored
Merge pull request #860 from gbregman/devel
Bump SPDK version to 24.05
2 parents 63ce22c + ccf21e7 commit 4ef6970

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Globals
22
VERSION="1.3.1"
33
CEPH_VERSION="18.2.4"
4-
SPDK_VERSION="24.01"
4+
SPDK_VERSION="24.05"
55
CONTAINER_REGISTRY="quay.io/ceph"
66
QUAY_SPDK="${CONTAINER_REGISTRY}/spdk"
77
QUAY_CEPH="${CONTAINER_REGISTRY}/vstart-cluster"

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[submodule "spdk"]
22
path = spdk
33
url = https://github.com/ceph/spdk.git
4-
branch = ceph-nvmeof-v24.01
4+
branch = ceph-nvmeof-v24.05

control/grpc.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ def _alloc_cluster(self, anagrp: int) -> str:
372372
nonce = rpc_bdev.bdev_rbd_register_cluster(
373373
self.spdk_rpc_client,
374374
name = name,
375-
user = self.rados_id,
375+
user_id = self.rados_id,
376376
core_mask = self.librbd_core_mask,
377377
)
378378
with self.shared_state_lock:
@@ -2153,8 +2153,8 @@ def list_connections_safe(self, request, context):
21532153
try:
21542154
if qp["cntlid"] != conn["cntlid"]:
21552155
continue
2156-
if qp["state"] != "active":
2157-
self.logger.debug(f"Qpair {qp} is not active")
2156+
if qp["state"] != "enabled":
2157+
self.logger.debug(f"Qpair {qp} is not enabled")
21582158
continue
21592159
addr = qp["listen_address"]
21602160
if not addr:

spdk

Submodule spdk updated 653 files

0 commit comments

Comments
 (0)