From: Sage Weil Date: Thu, 16 Jul 2015 17:14:54 +0000 (-0400) Subject: osd/osd_types: clean up pg_info_t comments a bit X-Git-Tag: v9.1.0~346^2~50 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=fd6cfa34d0b8a0a09216f52c76fe316f835e1ada;p=ceph.git osd/osd_types: clean up pg_info_t comments a bit Signed-off-by: Sage Weil --- diff --git a/src/osd/osd_types.h b/src/osd/osd_types.h index 737817319362..481e01477480 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;