From 42d65b0a7057696f4b8094f7c686d467c075a64d Mon Sep 17 00:00:00 2001 From: Samuel Just Date: Thu, 29 Aug 2013 15:08:58 -0700 Subject: [PATCH] PGLog: initialize writeout_from in PGLog constructor Fixes: 6151 Backport: dumpling Signed-off-by: Samuel Just Introduced: f808c205c503f7d32518c91619f249466f84c4cf Reviewed-by: Sage Weil --- src/osd/PGLog.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/osd/PGLog.h b/src/osd/PGLog.h index 441b56706c45a..792191bea2a30 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) {} -- 2.39.5