From: Sage Weil Date: Tue, 8 Nov 2016 21:37:25 +0000 (-0500) Subject: mempool: move to libcommon X-Git-Tag: v11.1.0~325^2~7 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=328487b6e129164d4e0fd9bcb84588067f006e62;p=ceph.git mempool: move to libcommon Signed-off-by: Sage Weil --- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 6befb3efe96d..c46cab9ab627 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -387,6 +387,7 @@ set(libcommon_files common/io_priority.cc common/Clock.cc common/ceph_time.cc + common/mempool.cc common/Throttle.cc common/Timer.cc common/Finisher.cc diff --git a/src/common/mempool.cc b/src/common/mempool.cc new file mode 100644 index 000000000000..33ea7beb4d8e --- /dev/null +++ b/src/common/mempool.cc @@ -0,0 +1,112 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab +/* + * Ceph - scalable distributed file system + * + * Copyright (C) 2016 Allen Samuels + * + * This is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software + * Foundation. See file COPYING. + * + */ + +#include "include/mempool.h" +#include "include/demangle.h" + + +// default to debug_mode off +bool mempool::debug_mode = false; + +// -------------------------------------------------------------- + +mempool::pool_t& mempool::get_pool(mempool::pool_index_t ix) +{ + // We rely on this array being initialized before any invocation of + // this function, even if it is called by ctors in other compilation + // units that are being initialized before this compilation unit. + static mempool::pool_t table[num_pools]; + return table[ix]; +} + +const char *mempool::get_pool_name(mempool::pool_index_t ix) { +#define P(x) #x, + static const char *names[num_pools] = { + DEFINE_MEMORY_POOLS_HELPER(P) + }; +#undef P + return names[ix]; +} + +void mempool::dump(ceph::Formatter *f, size_t skip) +{ + for (size_t i = skip; i < num_pools; ++i) { + const pool_t &pool = mempool::get_pool((pool_index_t)i); + f->open_object_section(get_pool_name((pool_index_t)i)); + pool.dump(f); + f->close_section(); + } +} + +void mempool::set_debug_mode(bool d) +{ + debug_mode = d; +} + +// -------------------------------------------------------------- +// pool_t + +size_t mempool::pool_t::allocated_bytes() const +{ + ssize_t result = 0; + for (size_t i = 0; i < num_shards; ++i) { + result += shard[i].bytes; + } + assert(result >= 0); + return (size_t) result; +} + +size_t mempool::pool_t::allocated_items() const +{ + ssize_t result = 0; + for (size_t i = 0; i < num_shards; ++i) { + result += shard[i].items; + } + assert(result >= 0); + return (size_t) result; +} + +void mempool::pool_t::get_stats( + stats_t *total, + std::map *by_type) const +{ + for (size_t i = 0; i < num_shards; ++i) { + total->items += shard[i].items; + total->bytes += shard[i].bytes; + } + if (debug_mode) { + std::unique_lock shard_lock(lock); + for (auto &p : type_map) { + std::string n = ceph_demangle(p.second.type_name); + stats_t &s = (*by_type)[n]; + s.bytes = p.second.items * p.second.item_size; + s.items = p.second.items; + } + } +} + +void mempool::pool_t::dump(ceph::Formatter *f) const +{ + stats_t total; + std::map by_type; + get_stats(&total, &by_type); + f->dump_object("total", total); + if (!by_type.empty()) { + for (auto &i : by_type) { + f->open_object_section(i.first.c_str()); + i.second.dump(f); + f->close_section(); + } + } +} diff --git a/src/global/CMakeLists.txt b/src/global/CMakeLists.txt index 4b65e391ee65..90bb2a5e112d 100644 --- a/src/global/CMakeLists.txt +++ b/src/global/CMakeLists.txt @@ -1,8 +1,7 @@ set(libglobal_srcs global_init.cc pidfile.cc - signal_handler.cc - mempool.cc) + signal_handler.cc) set(global_common_files global_context.cc) add_library(global_common_objs OBJECT ${global_common_files}) diff --git a/src/global/mempool.cc b/src/global/mempool.cc deleted file mode 100644 index 33ea7beb4d8e..000000000000 --- a/src/global/mempool.cc +++ /dev/null @@ -1,112 +0,0 @@ -// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- -// vim: ts=8 sw=2 smarttab -/* - * Ceph - scalable distributed file system - * - * Copyright (C) 2016 Allen Samuels - * - * This is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software - * Foundation. See file COPYING. - * - */ - -#include "include/mempool.h" -#include "include/demangle.h" - - -// default to debug_mode off -bool mempool::debug_mode = false; - -// -------------------------------------------------------------- - -mempool::pool_t& mempool::get_pool(mempool::pool_index_t ix) -{ - // We rely on this array being initialized before any invocation of - // this function, even if it is called by ctors in other compilation - // units that are being initialized before this compilation unit. - static mempool::pool_t table[num_pools]; - return table[ix]; -} - -const char *mempool::get_pool_name(mempool::pool_index_t ix) { -#define P(x) #x, - static const char *names[num_pools] = { - DEFINE_MEMORY_POOLS_HELPER(P) - }; -#undef P - return names[ix]; -} - -void mempool::dump(ceph::Formatter *f, size_t skip) -{ - for (size_t i = skip; i < num_pools; ++i) { - const pool_t &pool = mempool::get_pool((pool_index_t)i); - f->open_object_section(get_pool_name((pool_index_t)i)); - pool.dump(f); - f->close_section(); - } -} - -void mempool::set_debug_mode(bool d) -{ - debug_mode = d; -} - -// -------------------------------------------------------------- -// pool_t - -size_t mempool::pool_t::allocated_bytes() const -{ - ssize_t result = 0; - for (size_t i = 0; i < num_shards; ++i) { - result += shard[i].bytes; - } - assert(result >= 0); - return (size_t) result; -} - -size_t mempool::pool_t::allocated_items() const -{ - ssize_t result = 0; - for (size_t i = 0; i < num_shards; ++i) { - result += shard[i].items; - } - assert(result >= 0); - return (size_t) result; -} - -void mempool::pool_t::get_stats( - stats_t *total, - std::map *by_type) const -{ - for (size_t i = 0; i < num_shards; ++i) { - total->items += shard[i].items; - total->bytes += shard[i].bytes; - } - if (debug_mode) { - std::unique_lock shard_lock(lock); - for (auto &p : type_map) { - std::string n = ceph_demangle(p.second.type_name); - stats_t &s = (*by_type)[n]; - s.bytes = p.second.items * p.second.item_size; - s.items = p.second.items; - } - } -} - -void mempool::pool_t::dump(ceph::Formatter *f) const -{ - stats_t total; - std::map by_type; - get_stats(&total, &by_type); - f->dump_object("total", total); - if (!by_type.empty()) { - for (auto &i : by_type) { - f->open_object_section(i.first.c_str()); - i.second.dump(f); - f->close_section(); - } - } -}