aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/hpfs
diff options
context:
space:
mode:
authorRobert Watson <rwatson@FreeBSD.org>2005-10-31 15:41:29 +0000
committerRobert Watson <rwatson@FreeBSD.org>2005-10-31 15:41:29 +0000
commit5bb84bc84b1d1f978dd93aa02acef9936e79abc0 (patch)
treefe71f10c01688ab52e9bffd17c7d2ebd7d2c09b4 /sys/fs/hpfs
parent9dc2f0df89ef0a9f8f2edab0ce3edfca3d510b6d (diff)
downloadsrc-5bb84bc84b1d1f978dd93aa02acef9936e79abc0.tar.gz
src-5bb84bc84b1d1f978dd93aa02acef9936e79abc0.zip
Normalize a significant number of kernel malloc type names:
- Prefer '_' to ' ', as it results in more easily parsed results in memory monitoring tools such as vmstat. - Remove punctuation that is incompatible with using memory type names as file names, such as '/' characters. - Disambiguate some collisions by adding subsystem prefixes to some memory types. - Generally prefer lower case to upper case. - If the same type is defined in multiple architecture directories, attempt to use the same name in additional cases. Not all instances were caught in this change, so more work is required to finish this conversion. Similar changes are required for UMA zone names.
Notes
Notes: svn path=/head/; revision=151897
Diffstat (limited to 'sys/fs/hpfs')
-rw-r--r--sys/fs/hpfs/hpfs_vfsops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/fs/hpfs/hpfs_vfsops.c b/sys/fs/hpfs/hpfs_vfsops.c
index b07898d70558..cc43fe63617b 100644
--- a/sys/fs/hpfs/hpfs_vfsops.c
+++ b/sys/fs/hpfs/hpfs_vfsops.c
@@ -53,8 +53,8 @@
#include <fs/hpfs/hpfsmount.h>
#include <fs/hpfs/hpfs_subr.h>
-MALLOC_DEFINE(M_HPFSMNT, "HPFS mount", "HPFS mount structure");
-MALLOC_DEFINE(M_HPFSNO, "HPFS node", "HPFS node structure");
+MALLOC_DEFINE(M_HPFSMNT, "hpfs_mount", "HPFS mount structure");
+MALLOC_DEFINE(M_HPFSNO, "hpfs_node", "HPFS node structure");
struct sockaddr;