From 6cd7e84293d27168fcf1b86bf058722c7736c1ec Mon Sep 17 00:00:00 2001 From: Jason Dillaman Date: Wed, 27 Jan 2021 08:32:45 -0500 Subject: [PATCH] librbd/migration: minor cleanup to QCOWFormat code Signed-off-by: Jason Dillaman --- src/librbd/migration/QCOWFormat.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/librbd/migration/QCOWFormat.cc b/src/librbd/migration/QCOWFormat.cc index 642e3114ffa..0499fa2a97c 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); -- 2.39.5