diff options
author | rwatson <rwatson@FreeBSD.org> | 2005-10-31 15:41:29 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2005-10-31 15:41:29 +0000 |
commit | be4f357149ecc68e1bf349f69f702cad430aec97 (patch) | |
tree | fe71f10c01688ab52e9bffd17c7d2ebd7d2c09b4 /sys/isofs/cd9660 | |
parent | 5f4072340596bcd7e45343bc44317347b00f07e4 (diff) | |
download | FreeBSD-src-be4f357149ecc68e1bf349f69f702cad430aec97.zip FreeBSD-src-be4f357149ecc68e1bf349f69f702cad430aec97.tar.gz |
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.
Diffstat (limited to 'sys/isofs/cd9660')
-rw-r--r-- | sys/isofs/cd9660/cd9660_vfsops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/isofs/cd9660/cd9660_vfsops.c b/sys/isofs/cd9660/cd9660_vfsops.c index 5eec0c9..b68e59e 100644 --- a/sys/isofs/cd9660/cd9660_vfsops.c +++ b/sys/isofs/cd9660/cd9660_vfsops.c @@ -62,8 +62,8 @@ __FBSDID("$FreeBSD$"); #include <geom/geom.h> #include <geom/geom_vfs.h> -MALLOC_DEFINE(M_ISOFSMNT, "ISOFS mount", "ISOFS mount structure"); -MALLOC_DEFINE(M_ISOFSNODE, "ISOFS node", "ISOFS vnode private part"); +MALLOC_DEFINE(M_ISOFSMNT, "isofs_mount", "ISOFS mount structure"); +MALLOC_DEFINE(M_ISOFSNODE, "isofs_node", "ISOFS vnode private part"); struct iconv_functions *cd9660_iconv = NULL; |