From: Sage Weil Date: Thu, 28 Feb 2019 14:40:52 +0000 (-0600) Subject: msg/Connection: disable {post,revoke}_rx_buffer X-Git-Tag: v14.1.1~71^2~2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=0c59931befaaf478646664b78134bd133569530e;p=ceph-ci.git msg/Connection: disable {post,revoke}_rx_buffer Broken by design. Signed-off-by: Sage Weil --- diff --git a/src/msg/Connection.h b/src/msg/Connection.h index c245180ceee..4eea5ff0d6c 100644 --- a/src/msg/Connection.h +++ b/src/msg/Connection.h @@ -214,14 +214,18 @@ public: } void post_rx_buffer(ceph_tid_t tid, bufferlist& bl) { +#if 0 Mutex::Locker l(lock); ++rx_buffers_version; rx_buffers[tid] = pair(bl, rx_buffers_version); +#endif } void revoke_rx_buffer(ceph_tid_t tid) { +#if 0 Mutex::Locker l(lock); rx_buffers.erase(tid); +#endif } utime_t get_last_keepalive() const {