From: Haomai Wang Date: Mon, 1 Dec 2014 17:25:38 +0000 (+0800) Subject: common/Initialize.h: add header file to Makefile.am X-Git-Tag: v0.92~32^2~10^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F3043%2Fhead;p=ceph.git common/Initialize.h: add header file to Makefile.am Signed-off-by: Haomai Wang --- diff --git a/src/common/Makefile.am b/src/common/Makefile.am index 9431c82d9af..8ee980d614e 100644 --- a/src/common/Makefile.am +++ b/src/common/Makefile.am @@ -209,7 +209,8 @@ noinst_HEADERS += \ common/module.h \ common/Continuation.h \ common/Readahead.h \ - common/Cycles.h + common/Cycles.h \ + common/Initialize.h noinst_LTLIBRARIES += libcommon.la diff --git a/src/test/objectstore/ObjectStoreTransactionBenchmark.cc b/src/test/objectstore/ObjectStoreTransactionBenchmark.cc index 541b32defef..0d7c73f337f 100644 --- a/src/test/objectstore/ObjectStoreTransactionBenchmark.cc +++ b/src/test/objectstore/ObjectStoreTransactionBenchmark.cc @@ -265,7 +265,7 @@ int main(int argc, char **argv) uint64_t times = atoi(args[0]); PerfCase c; uint64_t ticks = c.rados_write_4k(times); - Transaction.dump_stat(); + Transaction::dump_stat(); cerr << " Total rados op " << times << " run time " << Cycles::to_microseconds(ticks) << "us." << std::endl; return 0;