packagefs: Use "pkgfs" in object cache names.

Makes the "slabs" KDL command output align better.
This commit is contained in:
Augustin Cavalier
2024-08-31 13:14:10 -04:00
parent 3399bac1b2
commit 706d9ddd10
2 changed files with 2 additions and 2 deletions
@@ -1081,7 +1081,7 @@ packagefs_std_ops(int32 op, ...)
}
PackageFileHeapAccessorBase::sChunkCache =
create_object_cache_etc("packagefs heap buffers",
create_object_cache_etc("pkgfs heap buffers",
PackageFileHeapAccessorBase::kChunkSize, sizeof(void*),
0, /* magazine capacity, count */ 2, 1, 0, NULL,
NULL, NULL, NULL);
@@ -18,7 +18,7 @@
if (size != sizeof(CLASS)) \
panic("unexpected size passed to operator new!"); \
if (s##CLASS##Cache == NULL) { \
s##CLASS##Cache = create_object_cache("packagefs " #CLASS "s", \
s##CLASS##Cache = create_object_cache("pkgfs " #CLASS "s", \
sizeof(CLASS), 8, NULL, NULL, NULL); \
} \
\