2013-12-21 07:47:16 +08:00
|
|
|
#include "test/jemalloc_test.h"
|
|
|
|
|
|
|
|
TEST_BEGIN(test_stats_summary)
|
|
|
|
{
|
2015-05-29 06:03:58 +08:00
|
|
|
size_t sz, allocated, active, resident, mapped;
|
2013-12-21 07:47:16 +08:00
|
|
|
int expected = config_stats ? 0 : ENOENT;
|
|
|
|
|
|
|
|
sz = sizeof(size_t);
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("stats.allocated", (void *)&allocated, &sz, NULL,
|
|
|
|
0), expected, "Unexpected mallctl() result");
|
|
|
|
assert_d_eq(mallctl("stats.active", (void *)&active, &sz, NULL, 0),
|
2013-12-21 07:47:16 +08:00
|
|
|
expected, "Unexpected mallctl() result");
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("stats.resident", (void *)&resident, &sz, NULL, 0),
|
|
|
|
expected, "Unexpected mallctl() result");
|
|
|
|
assert_d_eq(mallctl("stats.mapped", (void *)&mapped, &sz, NULL, 0),
|
2015-05-29 06:03:58 +08:00
|
|
|
expected, "Unexpected mallctl() result");
|
2013-12-21 07:47:16 +08:00
|
|
|
|
|
|
|
if (config_stats) {
|
|
|
|
assert_zu_le(allocated, active,
|
|
|
|
"allocated should be no larger than active");
|
2015-05-29 06:03:58 +08:00
|
|
|
assert_zu_lt(active, resident,
|
|
|
|
"active should be less than resident");
|
|
|
|
assert_zu_lt(active, mapped,
|
|
|
|
"active should be less than mapped");
|
2013-12-21 07:47:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
TEST_END
|
|
|
|
|
2016-06-01 05:50:21 +08:00
|
|
|
TEST_BEGIN(test_stats_large)
|
2013-12-21 07:47:16 +08:00
|
|
|
{
|
|
|
|
void *p;
|
|
|
|
uint64_t epoch;
|
|
|
|
size_t allocated;
|
2014-05-16 13:22:27 +08:00
|
|
|
uint64_t nmalloc, ndalloc, nrequests;
|
2013-12-21 07:47:16 +08:00
|
|
|
size_t sz;
|
|
|
|
int expected = config_stats ? 0 : ENOENT;
|
|
|
|
|
2016-05-28 15:17:28 +08:00
|
|
|
p = mallocx(SMALL_MAXCLASS+1, 0);
|
2013-12-21 07:47:16 +08:00
|
|
|
assert_ptr_not_null(p, "Unexpected mallocx() failure");
|
|
|
|
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("epoch", NULL, NULL, (void *)&epoch, sizeof(epoch)),
|
|
|
|
0, "Unexpected mallctl() failure");
|
2013-12-21 07:47:16 +08:00
|
|
|
|
|
|
|
sz = sizeof(size_t);
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("stats.arenas.0.large.allocated",
|
|
|
|
(void *)&allocated, &sz, NULL, 0), expected,
|
|
|
|
"Unexpected mallctl() result");
|
2013-12-21 07:47:16 +08:00
|
|
|
sz = sizeof(uint64_t);
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("stats.arenas.0.large.nmalloc", (void *)&nmalloc,
|
|
|
|
&sz, NULL, 0), expected, "Unexpected mallctl() result");
|
|
|
|
assert_d_eq(mallctl("stats.arenas.0.large.ndalloc", (void *)&ndalloc,
|
|
|
|
&sz, NULL, 0), expected, "Unexpected mallctl() result");
|
|
|
|
assert_d_eq(mallctl("stats.arenas.0.large.nrequests",
|
|
|
|
(void *)&nrequests, &sz, NULL, 0), expected,
|
|
|
|
"Unexpected mallctl() result");
|
2013-12-21 07:47:16 +08:00
|
|
|
|
|
|
|
if (config_stats) {
|
|
|
|
assert_zu_gt(allocated, 0,
|
|
|
|
"allocated should be greater than zero");
|
|
|
|
assert_u64_ge(nmalloc, ndalloc,
|
|
|
|
"nmalloc should be at least as large as ndalloc");
|
2014-05-16 13:22:27 +08:00
|
|
|
assert_u64_le(nmalloc, nrequests,
|
|
|
|
"nmalloc should no larger than nrequests");
|
2013-12-21 07:47:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dallocx(p, 0);
|
|
|
|
}
|
|
|
|
TEST_END
|
|
|
|
|
|
|
|
TEST_BEGIN(test_stats_arenas_summary)
|
|
|
|
{
|
|
|
|
unsigned arena;
|
2016-06-01 05:50:21 +08:00
|
|
|
void *little, *large;
|
2013-12-21 07:47:16 +08:00
|
|
|
uint64_t epoch;
|
|
|
|
size_t sz;
|
|
|
|
int expected = config_stats ? 0 : ENOENT;
|
|
|
|
size_t mapped;
|
|
|
|
uint64_t npurge, nmadvise, purged;
|
|
|
|
|
|
|
|
arena = 0;
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("thread.arena", NULL, NULL, (void *)&arena,
|
|
|
|
sizeof(arena)), 0, "Unexpected mallctl() failure");
|
2013-12-21 07:47:16 +08:00
|
|
|
|
2014-05-21 17:01:21 +08:00
|
|
|
little = mallocx(SMALL_MAXCLASS, 0);
|
|
|
|
assert_ptr_not_null(little, "Unexpected mallocx() failure");
|
2016-10-13 02:49:19 +08:00
|
|
|
large = mallocx((1U << LG_LARGE_MINCLASS), 0);
|
2016-06-01 05:50:21 +08:00
|
|
|
assert_ptr_not_null(large, "Unexpected mallocx() failure");
|
2013-12-21 07:47:16 +08:00
|
|
|
|
2016-02-20 10:24:30 +08:00
|
|
|
dallocx(little, 0);
|
2016-06-01 05:50:21 +08:00
|
|
|
dallocx(large, 0);
|
2016-02-20 10:24:30 +08:00
|
|
|
|
2016-10-13 02:49:19 +08:00
|
|
|
assert_d_eq(mallctl("thread.tcache.flush", NULL, NULL, NULL, 0),
|
|
|
|
config_tcache ? 0 : ENOENT, "Unexpected mallctl() result");
|
2013-12-21 07:47:16 +08:00
|
|
|
assert_d_eq(mallctl("arena.0.purge", NULL, NULL, NULL, 0), 0,
|
|
|
|
"Unexpected mallctl() failure");
|
|
|
|
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("epoch", NULL, NULL, (void *)&epoch, sizeof(epoch)),
|
|
|
|
0, "Unexpected mallctl() failure");
|
2013-12-21 07:47:16 +08:00
|
|
|
|
|
|
|
sz = sizeof(size_t);
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("stats.arenas.0.mapped", (void *)&mapped, &sz, NULL,
|
|
|
|
0), expected, "Unexepected mallctl() result");
|
2013-12-21 07:47:16 +08:00
|
|
|
sz = sizeof(uint64_t);
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("stats.arenas.0.npurge", (void *)&npurge, &sz, NULL,
|
|
|
|
0), expected, "Unexepected mallctl() result");
|
|
|
|
assert_d_eq(mallctl("stats.arenas.0.nmadvise", (void *)&nmadvise, &sz,
|
|
|
|
NULL, 0), expected, "Unexepected mallctl() result");
|
|
|
|
assert_d_eq(mallctl("stats.arenas.0.purged", (void *)&purged, &sz, NULL,
|
|
|
|
0), expected, "Unexepected mallctl() result");
|
2013-12-21 07:47:16 +08:00
|
|
|
|
|
|
|
if (config_stats) {
|
2014-01-22 06:20:29 +08:00
|
|
|
assert_u64_gt(npurge, 0,
|
|
|
|
"At least one purge should have occurred");
|
2013-12-21 07:47:16 +08:00
|
|
|
assert_u64_le(nmadvise, purged,
|
|
|
|
"nmadvise should be no greater than purged");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
TEST_END
|
|
|
|
|
2014-01-22 06:20:29 +08:00
|
|
|
void *
|
|
|
|
thd_start(void *arg)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
no_lazy_lock(void)
|
|
|
|
{
|
|
|
|
thd_t thd;
|
|
|
|
|
|
|
|
thd_create(&thd, thd_start, NULL);
|
|
|
|
thd_join(thd, NULL);
|
|
|
|
}
|
|
|
|
|
2013-12-21 07:47:16 +08:00
|
|
|
TEST_BEGIN(test_stats_arenas_small)
|
|
|
|
{
|
|
|
|
unsigned arena;
|
|
|
|
void *p;
|
|
|
|
size_t sz, allocated;
|
|
|
|
uint64_t epoch, nmalloc, ndalloc, nrequests;
|
|
|
|
int expected = config_stats ? 0 : ENOENT;
|
|
|
|
|
2014-01-22 06:20:29 +08:00
|
|
|
no_lazy_lock(); /* Lazy locking would dodge tcache testing. */
|
|
|
|
|
2013-12-21 07:47:16 +08:00
|
|
|
arena = 0;
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("thread.arena", NULL, NULL, (void *)&arena,
|
|
|
|
sizeof(arena)), 0, "Unexpected mallctl() failure");
|
2013-12-21 07:47:16 +08:00
|
|
|
|
|
|
|
p = mallocx(SMALL_MAXCLASS, 0);
|
|
|
|
assert_ptr_not_null(p, "Unexpected mallocx() failure");
|
|
|
|
|
2014-01-15 09:49:37 +08:00
|
|
|
assert_d_eq(mallctl("thread.tcache.flush", NULL, NULL, NULL, 0),
|
|
|
|
config_tcache ? 0 : ENOENT, "Unexpected mallctl() result");
|
|
|
|
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("epoch", NULL, NULL, (void *)&epoch, sizeof(epoch)),
|
|
|
|
0, "Unexpected mallctl() failure");
|
2013-12-21 07:47:16 +08:00
|
|
|
|
|
|
|
sz = sizeof(size_t);
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("stats.arenas.0.small.allocated",
|
|
|
|
(void *)&allocated, &sz, NULL, 0), expected,
|
|
|
|
"Unexpected mallctl() result");
|
2013-12-21 07:47:16 +08:00
|
|
|
sz = sizeof(uint64_t);
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("stats.arenas.0.small.nmalloc", (void *)&nmalloc,
|
|
|
|
&sz, NULL, 0), expected, "Unexpected mallctl() result");
|
|
|
|
assert_d_eq(mallctl("stats.arenas.0.small.ndalloc", (void *)&ndalloc,
|
|
|
|
&sz, NULL, 0), expected, "Unexpected mallctl() result");
|
|
|
|
assert_d_eq(mallctl("stats.arenas.0.small.nrequests",
|
|
|
|
(void *)&nrequests, &sz, NULL, 0), expected,
|
|
|
|
"Unexpected mallctl() result");
|
2013-12-21 07:47:16 +08:00
|
|
|
|
|
|
|
if (config_stats) {
|
|
|
|
assert_zu_gt(allocated, 0,
|
2014-01-15 09:49:37 +08:00
|
|
|
"allocated should be greater than zero");
|
2013-12-21 07:47:16 +08:00
|
|
|
assert_u64_gt(nmalloc, 0,
|
|
|
|
"nmalloc should be no greater than zero");
|
|
|
|
assert_u64_ge(nmalloc, ndalloc,
|
|
|
|
"nmalloc should be at least as large as ndalloc");
|
|
|
|
assert_u64_gt(nrequests, 0,
|
2014-01-15 09:49:37 +08:00
|
|
|
"nrequests should be greater than zero");
|
2013-12-21 07:47:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dallocx(p, 0);
|
|
|
|
}
|
|
|
|
TEST_END
|
|
|
|
|
2016-06-01 05:50:21 +08:00
|
|
|
TEST_BEGIN(test_stats_arenas_large)
|
2014-10-13 13:53:59 +08:00
|
|
|
{
|
|
|
|
unsigned arena;
|
|
|
|
void *p;
|
|
|
|
size_t sz, allocated;
|
|
|
|
uint64_t epoch, nmalloc, ndalloc;
|
|
|
|
int expected = config_stats ? 0 : ENOENT;
|
|
|
|
|
|
|
|
arena = 0;
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("thread.arena", NULL, NULL, (void *)&arena,
|
|
|
|
sizeof(arena)), 0, "Unexpected mallctl() failure");
|
2014-10-13 13:53:59 +08:00
|
|
|
|
2016-10-13 02:49:19 +08:00
|
|
|
p = mallocx((1U << LG_LARGE_MINCLASS), 0);
|
2014-10-13 13:53:59 +08:00
|
|
|
assert_ptr_not_null(p, "Unexpected mallocx() failure");
|
|
|
|
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("epoch", NULL, NULL, (void *)&epoch, sizeof(epoch)),
|
|
|
|
0, "Unexpected mallctl() failure");
|
2014-10-13 13:53:59 +08:00
|
|
|
|
|
|
|
sz = sizeof(size_t);
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("stats.arenas.0.large.allocated",
|
|
|
|
(void *)&allocated, &sz, NULL, 0), expected,
|
|
|
|
"Unexpected mallctl() result");
|
2014-10-13 13:53:59 +08:00
|
|
|
sz = sizeof(uint64_t);
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("stats.arenas.0.large.nmalloc", (void *)&nmalloc,
|
|
|
|
&sz, NULL, 0), expected, "Unexpected mallctl() result");
|
|
|
|
assert_d_eq(mallctl("stats.arenas.0.large.ndalloc", (void *)&ndalloc,
|
|
|
|
&sz, NULL, 0), expected, "Unexpected mallctl() result");
|
2014-10-13 13:53:59 +08:00
|
|
|
|
|
|
|
if (config_stats) {
|
|
|
|
assert_zu_gt(allocated, 0,
|
|
|
|
"allocated should be greater than zero");
|
2016-04-13 03:39:02 +08:00
|
|
|
assert_u64_gt(nmalloc, 0,
|
2014-10-13 13:53:59 +08:00
|
|
|
"nmalloc should be greater than zero");
|
2016-04-13 03:39:02 +08:00
|
|
|
assert_u64_ge(nmalloc, ndalloc,
|
2014-10-13 13:53:59 +08:00
|
|
|
"nmalloc should be at least as large as ndalloc");
|
|
|
|
}
|
|
|
|
|
|
|
|
dallocx(p, 0);
|
|
|
|
}
|
|
|
|
TEST_END
|
|
|
|
|
2013-12-21 07:47:16 +08:00
|
|
|
TEST_BEGIN(test_stats_arenas_bins)
|
|
|
|
{
|
|
|
|
unsigned arena;
|
|
|
|
void *p;
|
2016-05-30 09:34:50 +08:00
|
|
|
size_t sz, curslabs, curregs;
|
2013-12-21 07:47:16 +08:00
|
|
|
uint64_t epoch, nmalloc, ndalloc, nrequests, nfills, nflushes;
|
2016-05-30 09:34:50 +08:00
|
|
|
uint64_t nslabs, nreslabs;
|
2013-12-21 07:47:16 +08:00
|
|
|
int expected = config_stats ? 0 : ENOENT;
|
|
|
|
|
|
|
|
arena = 0;
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("thread.arena", NULL, NULL, (void *)&arena,
|
|
|
|
sizeof(arena)), 0, "Unexpected mallctl() failure");
|
2013-12-21 07:47:16 +08:00
|
|
|
|
|
|
|
p = mallocx(arena_bin_info[0].reg_size, 0);
|
|
|
|
assert_ptr_not_null(p, "Unexpected mallocx() failure");
|
|
|
|
|
|
|
|
assert_d_eq(mallctl("thread.tcache.flush", NULL, NULL, NULL, 0),
|
|
|
|
config_tcache ? 0 : ENOENT, "Unexpected mallctl() result");
|
|
|
|
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("epoch", NULL, NULL, (void *)&epoch, sizeof(epoch)),
|
|
|
|
0, "Unexpected mallctl() failure");
|
2013-12-21 07:47:16 +08:00
|
|
|
|
|
|
|
sz = sizeof(uint64_t);
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("stats.arenas.0.bins.0.nmalloc", (void *)&nmalloc,
|
|
|
|
&sz, NULL, 0), expected, "Unexpected mallctl() result");
|
|
|
|
assert_d_eq(mallctl("stats.arenas.0.bins.0.ndalloc", (void *)&ndalloc,
|
|
|
|
&sz, NULL, 0), expected, "Unexpected mallctl() result");
|
|
|
|
assert_d_eq(mallctl("stats.arenas.0.bins.0.nrequests",
|
|
|
|
(void *)&nrequests, &sz, NULL, 0), expected,
|
|
|
|
"Unexpected mallctl() result");
|
2014-10-13 13:53:59 +08:00
|
|
|
sz = sizeof(size_t);
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("stats.arenas.0.bins.0.curregs", (void *)&curregs,
|
|
|
|
&sz, NULL, 0), expected, "Unexpected mallctl() result");
|
2013-12-21 07:47:16 +08:00
|
|
|
|
2014-12-03 08:24:11 +08:00
|
|
|
sz = sizeof(uint64_t);
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("stats.arenas.0.bins.0.nfills", (void *)&nfills,
|
|
|
|
&sz, NULL, 0), config_tcache ? expected : ENOENT,
|
2013-12-21 07:47:16 +08:00
|
|
|
"Unexpected mallctl() result");
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("stats.arenas.0.bins.0.nflushes", (void *)&nflushes,
|
|
|
|
&sz, NULL, 0), config_tcache ? expected : ENOENT,
|
2013-12-21 07:47:16 +08:00
|
|
|
"Unexpected mallctl() result");
|
|
|
|
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("stats.arenas.0.bins.0.nslabs", (void *)&nslabs,
|
|
|
|
&sz, NULL, 0), expected, "Unexpected mallctl() result");
|
|
|
|
assert_d_eq(mallctl("stats.arenas.0.bins.0.nreslabs", (void *)&nreslabs,
|
|
|
|
&sz, NULL, 0), expected, "Unexpected mallctl() result");
|
2014-01-29 09:22:06 +08:00
|
|
|
sz = sizeof(size_t);
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("stats.arenas.0.bins.0.curslabs", (void *)&curslabs,
|
|
|
|
&sz, NULL, 0), expected, "Unexpected mallctl() result");
|
2013-12-21 07:47:16 +08:00
|
|
|
|
|
|
|
if (config_stats) {
|
|
|
|
assert_u64_gt(nmalloc, 0,
|
2014-01-22 06:20:29 +08:00
|
|
|
"nmalloc should be greater than zero");
|
2013-12-21 07:47:16 +08:00
|
|
|
assert_u64_ge(nmalloc, ndalloc,
|
|
|
|
"nmalloc should be at least as large as ndalloc");
|
|
|
|
assert_u64_gt(nrequests, 0,
|
2014-01-22 06:20:29 +08:00
|
|
|
"nrequests should be greater than zero");
|
2014-10-13 13:53:59 +08:00
|
|
|
assert_zu_gt(curregs, 0,
|
|
|
|
"allocated should be greater than zero");
|
2013-12-21 07:47:16 +08:00
|
|
|
if (config_tcache) {
|
|
|
|
assert_u64_gt(nfills, 0,
|
2014-01-22 06:20:29 +08:00
|
|
|
"At least one fill should have occurred");
|
2013-12-21 07:47:16 +08:00
|
|
|
assert_u64_gt(nflushes, 0,
|
2014-01-22 06:20:29 +08:00
|
|
|
"At least one flush should have occurred");
|
2013-12-21 07:47:16 +08:00
|
|
|
}
|
2016-05-30 09:34:50 +08:00
|
|
|
assert_u64_gt(nslabs, 0,
|
|
|
|
"At least one slab should have been allocated");
|
|
|
|
assert_zu_gt(curslabs, 0,
|
|
|
|
"At least one slab should be currently allocated");
|
2013-12-21 07:47:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dallocx(p, 0);
|
|
|
|
}
|
|
|
|
TEST_END
|
|
|
|
|
2016-06-01 05:50:21 +08:00
|
|
|
TEST_BEGIN(test_stats_arenas_lextents)
|
2014-10-13 13:53:59 +08:00
|
|
|
{
|
|
|
|
unsigned arena;
|
|
|
|
void *p;
|
|
|
|
uint64_t epoch, nmalloc, ndalloc;
|
2016-06-01 05:50:21 +08:00
|
|
|
size_t curlextents, sz, hsize;
|
2014-10-13 13:53:59 +08:00
|
|
|
int expected = config_stats ? 0 : ENOENT;
|
|
|
|
|
|
|
|
arena = 0;
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("thread.arena", NULL, NULL, (void *)&arena,
|
|
|
|
sizeof(arena)), 0, "Unexpected mallctl() failure");
|
2014-10-13 13:53:59 +08:00
|
|
|
|
2016-05-28 15:17:28 +08:00
|
|
|
sz = sizeof(size_t);
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("arenas.lextent.0.size", (void *)&hsize, &sz, NULL,
|
|
|
|
0), 0, "Unexpected mallctl() failure");
|
2016-05-28 15:17:28 +08:00
|
|
|
|
|
|
|
p = mallocx(hsize, 0);
|
2014-10-13 13:53:59 +08:00
|
|
|
assert_ptr_not_null(p, "Unexpected mallocx() failure");
|
|
|
|
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("epoch", NULL, NULL, (void *)&epoch, sizeof(epoch)),
|
|
|
|
0, "Unexpected mallctl() failure");
|
2014-10-13 13:53:59 +08:00
|
|
|
|
|
|
|
sz = sizeof(uint64_t);
|
2016-10-28 12:31:25 +08:00
|
|
|
assert_d_eq(mallctl("stats.arenas.0.lextents.0.nmalloc",
|
|
|
|
(void *)&nmalloc, &sz, NULL, 0), expected,
|
|
|
|
"Unexpected mallctl() result");
|
|
|
|
assert_d_eq(mallctl("stats.arenas.0.lextents.0.ndalloc",
|
|
|
|
(void *)&ndalloc, &sz, NULL, 0), expected,
|
|
|
|
"Unexpected mallctl() result");
|
2014-10-13 13:53:59 +08:00
|
|
|
sz = sizeof(size_t);
|
2016-06-01 05:50:21 +08:00
|
|
|
assert_d_eq(mallctl("stats.arenas.0.lextents.0.curlextents",
|
2016-10-28 12:31:25 +08:00
|
|
|
(void *)&curlextents, &sz, NULL, 0), expected,
|
|
|
|
"Unexpected mallctl() result");
|
2014-10-13 13:53:59 +08:00
|
|
|
|
|
|
|
if (config_stats) {
|
|
|
|
assert_u64_gt(nmalloc, 0,
|
|
|
|
"nmalloc should be greater than zero");
|
|
|
|
assert_u64_ge(nmalloc, ndalloc,
|
|
|
|
"nmalloc should be at least as large as ndalloc");
|
2016-06-01 05:50:21 +08:00
|
|
|
assert_u64_gt(curlextents, 0,
|
2016-10-13 02:49:19 +08:00
|
|
|
"At least one extent should be currently allocated");
|
2014-10-13 13:53:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dallocx(p, 0);
|
|
|
|
}
|
|
|
|
TEST_END
|
|
|
|
|
2013-12-21 07:47:16 +08:00
|
|
|
int
|
|
|
|
main(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (test(
|
|
|
|
test_stats_summary,
|
2016-06-01 05:50:21 +08:00
|
|
|
test_stats_large,
|
2013-12-21 07:47:16 +08:00
|
|
|
test_stats_arenas_summary,
|
|
|
|
test_stats_arenas_small,
|
2016-06-01 05:50:21 +08:00
|
|
|
test_stats_arenas_large,
|
2013-12-21 07:47:16 +08:00
|
|
|
test_stats_arenas_bins,
|
2016-06-01 05:50:21 +08:00
|
|
|
test_stats_arenas_lextents));
|
2013-12-21 07:47:16 +08:00
|
|
|
}
|