mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
malloc: prefix zones with malloc-
Reviewed by: markj Differential Revision: https://reviews.freebsd.org/D27038
This commit is contained in:
parent
828afdda17
commit
e1b6a7f83f
1 changed files with 13 additions and 13 deletions
|
|
@ -158,19 +158,19 @@ struct {
|
|||
const char *kz_name;
|
||||
uma_zone_t kz_zone[MALLOC_DEBUG_MAXZONES];
|
||||
} kmemzones[] = {
|
||||
{16, "16", },
|
||||
{32, "32", },
|
||||
{64, "64", },
|
||||
{128, "128", },
|
||||
{256, "256", },
|
||||
{512, "512", },
|
||||
{1024, "1024", },
|
||||
{2048, "2048", },
|
||||
{4096, "4096", },
|
||||
{8192, "8192", },
|
||||
{16384, "16384", },
|
||||
{32768, "32768", },
|
||||
{65536, "65536", },
|
||||
{16, "malloc-16", },
|
||||
{32, "malloc-32", },
|
||||
{64, "malloc-64", },
|
||||
{128, "malloc-128", },
|
||||
{256, "malloc-256", },
|
||||
{512, "malloc-512", },
|
||||
{1024, "malloc-1024", },
|
||||
{2048, "malloc-2048", },
|
||||
{4096, "malloc-4096", },
|
||||
{8192, "malloc-8192", },
|
||||
{16384, "malloc-16384", },
|
||||
{32768, "malloc-32768", },
|
||||
{65536, "malloc-65536", },
|
||||
{0, NULL},
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue