From 8efaf76235bcaed3cc19e1dbccb681afea9b66ee Mon Sep 17 00:00:00 2001 From: Daniel Gryniewicz Date: Fri, 19 Feb 2021 09:40:57 -0500 Subject: [PATCH] RGW Zipper - get_ctl() no longer needed Signed-off-by: Daniel Gryniewicz --- src/rgw/rgw_sal.h | 1 - src/rgw/rgw_sal_rados.h | 1 - 2 files changed, 2 deletions(-) diff --git a/src/rgw/rgw_sal.h b/src/rgw/rgw_sal.h index 20a7c7f5dea78..646f2937fd3d2 100644 --- a/src/rgw/rgw_sal.h +++ b/src/rgw/rgw_sal.h @@ -173,7 +173,6 @@ class RGWStore { RGWObjectCtx& obj_ctx, std::unique_ptr _head_obj, const DoutPrefixProvider *dpp, optional_yield y) = 0; virtual RGWLC* get_rgwlc(void) = 0; - virtual RGWCtl* get_ctl(void) = 0; virtual RGWCoroutinesManagerRegistry* get_cr_registry() = 0; virtual int delete_raw_obj(const rgw_raw_obj& obj) = 0; virtual int delete_raw_obj_aio(const rgw_raw_obj& obj, Completions* aio) = 0; diff --git a/src/rgw/rgw_sal_rados.h b/src/rgw/rgw_sal_rados.h index 32cf792541622..2fa77dba78dc6 100644 --- a/src/rgw/rgw_sal_rados.h +++ b/src/rgw/rgw_sal_rados.h @@ -405,7 +405,6 @@ class RGWRadosStore : public RGWStore { RGWObjectCtx& obj_ctx, std::unique_ptr _head_obj, const DoutPrefixProvider *dpp, optional_yield y) override; virtual RGWLC* get_rgwlc(void) override { return rados->get_lc(); } - virtual RGWCtl* get_ctl(void) override { return rados->pctl; } virtual RGWCoroutinesManagerRegistry* get_cr_registry() override { return rados->get_cr_registry(); } virtual int delete_raw_obj(const rgw_raw_obj& obj) override; virtual int delete_raw_obj_aio(const rgw_raw_obj& obj, Completions* aio) override; -- 2.39.5