]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
os/bluestore: fix tips when adding buffer to cache
authorxie xingguo <xie.xingguo@zte.com.cn>
Thu, 13 Oct 2016 03:19:18 +0000 (11:19 +0800)
committerxie xingguo <xie.xingguo@zte.com.cn>
Thu, 13 Oct 2016 03:19:18 +0000 (11:19 +0800)
Signed-off-by: xie xingguo <xie.xingguo@zte.com.cn>
src/os/bluestore/BlueStore.cc

index d534aa16cdb57e04c29a1ec337991dd1c2e55383..da254bbf0e10bb1f48ffbcd4f7ec23b471718d42 100644 (file)
@@ -604,7 +604,7 @@ void BlueStore::TwoQCache::_add_buffer(Buffer *b, int level, Buffer *near)
 {
   dout(20) << __func__ << " level " << level << " near " << near
           << " on " << *b
-          << " which has level " << b->cache_private << dendl;
+          << " which has cache_private " << b->cache_private << dendl;
   if (near) {
     b->cache_private = near->cache_private;
     switch (b->cache_private) {
@@ -642,7 +642,7 @@ void BlueStore::TwoQCache::_add_buffer(Buffer *b, int level, Buffer *near)
       b->cache_private = BUFFER_HOT;
       // move to hot.  fall-thru
     case BUFFER_HOT:
-      dout(20) << __func__ << " move to hot " << *b << dendl;
+      dout(20) << __func__ << " move to front of hot " << *b << dendl;
       buffer_hot.push_front(*b);
       break;
     default: