From fd6cfa34d0b8a0a09216f52c76fe316f835e1ada Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Thu, 16 Jul 2015 13:14:54 -0400 Subject: [PATCH] osd/osd_types: clean up pg_info_t comments a bit Signed-off-by: Sage Weil --- src/osd/osd_types.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/osd/osd_types.h b/src/osd/osd_types.h index 73781731936..481e0147748 100644 --- a/src/osd/osd_types.h +++ b/src/osd/osd_types.h @@ -1826,15 +1826,15 @@ inline ostream& operator<<(ostream& out, const pg_history_t& h) { */ struct pg_info_t { spg_t pgid; - eversion_t last_update; // last object version applied to store. - eversion_t last_complete; // last version pg was complete through. - epoch_t last_epoch_started;// last epoch at which this pg started on this osd + eversion_t last_update; ///< last object version applied to store. + eversion_t last_complete; ///< last version pg was complete through. + epoch_t last_epoch_started; ///< last epoch at which this pg started on this osd - version_t last_user_version; // last user object version applied to store + version_t last_user_version; ///< last user object version applied to store - eversion_t log_tail; // oldest log entry. + eversion_t log_tail; ///< oldest log entry. - hobject_t last_backfill; // objects >= this and < last_complete may be missing + hobject_t last_backfill; ///< objects >= this and < last_complete may be missing bool last_backfill_bitwise; ///< true if last_backfill reflects a bitwise (vs nibblewise) sort interval_set purged_snaps; -- 2.47.3