From: Sage Weil Date: Tue, 19 Oct 2021 15:39:45 +0000 (-0500) Subject: os/bluestore: add missing ' ' to LruOnodeCacheShare _[un]pin X-Git-Tag: v17.1.0~535^2~4 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=e6c3022c1f317f6c4f1ef569c32998d9882cab38;p=ceph-ci.git os/bluestore: add missing ' ' to LruOnodeCacheShare _[un]pin Signed-off-by: Sage Weil --- diff --git a/src/os/bluestore/BlueStore.cc b/src/os/bluestore/BlueStore.cc index 22f2fe32ef3..92bead276ae 100644 --- a/src/os/bluestore/BlueStore.cc +++ b/src/os/bluestore/BlueStore.cc @@ -1130,14 +1130,14 @@ struct LruOnodeCacheShard : public BlueStore::OnodeCacheShard { { lru.erase(lru.iterator_to(*o)); ++num_pinned; - dout(20) << __func__ << this << " " << " " << " " << o->oid << " pinned" << dendl; + dout(20) << __func__ << " " << this << " " << " " << " " << o->oid << " pinned" << dendl; } void _unpin(BlueStore::Onode* o) override { lru.push_front(*o); ceph_assert(num_pinned); --num_pinned; - dout(20) << __func__ << this << " " << " " << " " << o->oid << " unpinned" << dendl; + dout(20) << __func__ << " " << this << " " << " " << " " << o->oid << " unpinned" << dendl; } void _unpin_and_rm(BlueStore::Onode* o) override {