From ebffe8c633c93cf6ee6664ecc454be4cc26f692d Mon Sep 17 00:00:00 2001 From: mpilman Date: Fri, 8 Mar 2019 12:37:04 -0800 Subject: [PATCH] print correct pahes in alloc instrumentation --- fdbbackup/backup.actor.cpp | 3 ++- fdbserver/fdbserver.actor.cpp | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/fdbbackup/backup.actor.cpp b/fdbbackup/backup.actor.cpp index d4fc79cc09..af1d8fffaa 100644 --- a/fdbbackup/backup.actor.cpp +++ b/fdbbackup/backup.actor.cpp @@ -3318,7 +3318,8 @@ int main(int argc, char* argv[]) { << FastAllocator<512>::pageCount << " " << FastAllocator<1024>::pageCount << " " << FastAllocator<2048>::pageCount << " " - << FastAllocator<4096>::pageCount << endl; + << FastAllocator<4096>::pageCount << " " + << FastAllocator<8192>::pageCount << endl; vector< std::pair > typeNames; for( auto i = allocInstr.begin(); i != allocInstr.end(); ++i ) { diff --git a/fdbserver/fdbserver.actor.cpp b/fdbserver/fdbserver.actor.cpp index f208eb92d8..6a8d6b0320 100644 --- a/fdbserver/fdbserver.actor.cpp +++ b/fdbserver/fdbserver.actor.cpp @@ -1749,7 +1749,8 @@ int main(int argc, char* argv[]) { << FastAllocator<512>::pageCount << " " << FastAllocator<1024>::pageCount << " " << FastAllocator<2048>::pageCount << " " - << FastAllocator<4096>::pageCount << std::endl; + << FastAllocator<4096>::pageCount << " " + << FastAllocator<8192>::pageCount << std::endl; vector< std::pair > typeNames; for( auto i = allocInstr.begin(); i != allocInstr.end(); ++i ) {