From 1700ebbeba5382cc3dcffc558d80a68177452532 Mon Sep 17 00:00:00 2001 From: Miki Patel Date: Thu, 17 Jul 2025 15:14:53 +0530 Subject: [PATCH] librbd: Clean up usage of IoCtx Clean up of librbd::IoCtx to librados::IoCtx in Group.cc Signed-off-by: Miki Patel (cherry picked from commit ac14330994f42e92ed54e0a8857fea4f775c4fe5) Conflicts: src/librbd/api/Group.cc [ commit e5ccce14c4b0 ("rbd: add group snap info command") not in reef ] --- src/librbd/api/Group.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librbd/api/Group.cc b/src/librbd/api/Group.cc index f38d38fd5f9..5898d64034c 100644 --- a/src/librbd/api/Group.cc +++ b/src/librbd/api/Group.cc @@ -941,7 +941,7 @@ int Group::snap_create(librados::IoCtx& group_ioctx, } for (auto image: images) { - librbd::IoCtx image_io_ctx; + librados::IoCtx image_io_ctx; r = util::create_ioctx(group_ioctx, "image", image.spec.pool_id, {}, &image_io_ctx); if (r < 0) { -- 2.39.5