From: Matan Breizman Date: Wed, 16 Mar 2022 11:53:59 +0000 (+0200) Subject: crimson/osd: buffer runtime error with misaligned address X-Git-Tag: v18.0.0~1226^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F45415%2Fhead;p=ceph.git crimson/osd: buffer runtime error with misaligned address Signed-off-by: Matan Breizman --- diff --git a/src/crimson/osd/watch.cc b/src/crimson/osd/watch.cc index 54112963287e..88fe808524cc 100644 --- a/src/crimson/osd/watch.cc +++ b/src/crimson/osd/watch.cc @@ -116,7 +116,7 @@ seastar::future<> Watch::notify_ack( { logger().info("{}", __func__); return seastar::do_for_each(in_progress_notifies, - [this_shared=shared_from_this(), &reply_bl] (auto notify) { + [this_shared=shared_from_this(), reply_bl] (auto notify) { return notify->complete_watcher(this_shared, reply_bl); } ).then([this] {