Added extra zones:
```
diff --git a/sys/kern/kern_malloc.c b/sys/kern/kern_malloc.c
index b7d7e0c2d4b..a981ff0d9e4 100644
--- a/sys/kern/kern_malloc.c
+++ b/sys/kern/kern_malloc.c
@@ -158,7 +158,11 @@ struct {
} kmemzones[] = {
{16, "16", },
{32, "32", },
+ {48, "48", },
{64, "64", },
+ {80, "80", },
+ {96, "96", },
+ {112, "112", },
{128, "128", },
{256, "256", },
{512, "512", },
```
And a toy malloc type. Confirmed the sizes get reported and the allocation done with toy type is correctly reported.