From: Sage Weil Date: Thu, 26 Nov 2015 22:28:10 +0000 (-0500) Subject: Merge pull request #6175 from XinzeChi/wip-finisher-lat X-Git-Tag: v10.0.2~172 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=489b2a3594d098218729c1b536d27a3d493e714b;p=ceph.git Merge pull request #6175 from XinzeChi/wip-finisher-lat common: add latency perf counter for finisher Reviewed-by: Sage Weil --- 489b2a3594d098218729c1b536d27a3d493e714b diff --cc src/os/JournalingObjectStore.h index 42d13f6491a4,1531d3cdd000..bba3767b2c3d --- a/src/os/JournalingObjectStore.h +++ b/src/os/JournalingObjectStore.h @@@ -132,12 -133,10 +132,12 @@@ public JournalingObjectStore(const std::string& path) : ObjectStore(path), journal(NULL), - finisher(g_ceph_context), + finisher(g_ceph_context, "JournalObjectStore"), apply_manager(journal, finisher), replaying(false) {} - + + ~JournalingObjectStore() { + } }; #endif