]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
rgw: involve next on RGWGetObj_BlockDecrypt::fixup_range
authorSeena Fallah <seenafallah@gmail.com>
Sat, 7 Jun 2025 19:56:31 +0000 (21:56 +0200)
committerSeena Fallah <seenafallah@gmail.com>
Wed, 19 Nov 2025 17:36:53 +0000 (18:36 +0100)
Co-authored-by: Marcus Watts <mwatts@redhat.com>
Signed-off-by: Seena Fallah <seenafallah@gmail.com>
src/rgw/rgw_crypt.cc

index cc8b75ed231a4fcb21fda95477f2db7ca846b778..dd139bb0d231be08644a5da53fdc78a713fbd890 100644 (file)
@@ -750,6 +750,10 @@ int RGWGetObj_BlockDecrypt::fixup_range(off_t& bl_ofs, off_t& bl_end) {
   }
   ldpp_dout(this->dpp, 20) << "fixup_range [" << inp_ofs << "," << inp_end
       << "] => [" << bl_ofs << "," << bl_end << "]" << dendl;
+
+  if (next)
+    return next->fixup_range(bl_ofs, bl_end);
+
   return 0;
 }