From: Samuel Just Date: Thu, 29 Aug 2013 22:08:58 +0000 (-0700) Subject: PGLog: initialize writeout_from in PGLog constructor X-Git-Tag: v0.69~33 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=42d65b0a7057696f4b8094f7c686d467c075a64d;p=ceph.git PGLog: initialize writeout_from in PGLog constructor Fixes: 6151 Backport: dumpling Signed-off-by: Samuel Just Introduced: f808c205c503f7d32518c91619f249466f84c4cf Reviewed-by: Sage Weil --- diff --git a/src/osd/PGLog.h b/src/osd/PGLog.h index 441b56706c4..792191bea2a 100644 --- a/src/osd/PGLog.h +++ b/src/osd/PGLog.h @@ -237,6 +237,7 @@ public: PGLog(CephContext *cct = 0) : pg_log_debug(!(cct && !(cct->_conf->osd_debug_pg_log_writeout))), touched_log(false), dirty_from(eversion_t::max()), + writeout_from(eversion_t::max()), dirty_divergent_priors(false), cct(cct) {}