From: Jason Dillaman Date: Wed, 27 Jan 2021 13:32:45 +0000 (-0500) Subject: librbd/migration: minor cleanup to QCOWFormat code X-Git-Tag: v17.1.0~3143^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F39068%2Fhead;p=ceph.git librbd/migration: minor cleanup to QCOWFormat code Signed-off-by: Jason Dillaman --- diff --git a/src/librbd/migration/QCOWFormat.cc b/src/librbd/migration/QCOWFormat.cc index 642e3114ffa0..0499fa2a97c2 100644 --- a/src/librbd/migration/QCOWFormat.cc +++ b/src/librbd/migration/QCOWFormat.cc @@ -449,8 +449,8 @@ private: } } - ldout(cct, 20) << "l2_offset=" << l2_offset << ", " - << "index=" << idx << dendl; + ldout(cct, 20) << "l2_offset=" << l2_offset << ", " << "index=" << idx + << dendl; *l2_table = l2_cache.l2_table; return 0; } @@ -1156,7 +1156,7 @@ void QCOWFormat::handle_read_v2_header(int r, Context* on_finish) { << "cluster_bits=" << m_cluster_bits << ", " << "l1_table_offset=" << m_l1_table_offset << ", " << "snapshot_count=" << m_snapshot_count << ", " - << "snapshot_offset=" << m_snapshots_offset << dendl; + << "snapshots_offset=" << m_snapshots_offset << dendl; // allocate memory for L1 table and L2 + cluster caches m_l2_table_cache = std::make_unique(this);