From 29c684442e75cefc057fbfe091b239a0e4dfc6d3 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Tue, 20 May 2014 14:52:59 -0700 Subject: [PATCH] mds: make sure mds_stamp is set when we journal This is a catch-all that we are carrying over from before. It may not be strictly necessary, but I'm not inclined to check the code for Mutation users who didn't call acquire_locks(). Signed-off-by: Sage Weil --- src/mds/MDCache.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mds/MDCache.cc b/src/mds/MDCache.cc index 4c9a1e530e9..e33b0109cf2 100644 --- a/src/mds/MDCache.cc +++ b/src/mds/MDCache.cc @@ -1857,9 +1857,9 @@ void MDCache::predirty_journal_parents(MutationRef mut, EMetaBlob *blob, assert(mds->mdlog->entry_is_open()); - // declare now? - if (mut->now == utime_t()) - mut->now = ceph_clock_now(g_ceph_context); + // make sure stamp is set + if (mut->get_mds_stamp() == utime_t()) + mut->set_mds_stamp(ceph_clock_now(g_ceph_context)); if (in->is_base()) return;