Index: sys/ufs/ffs/ffs_subr.c =================================================================== --- sys/ufs/ffs/ffs_subr.c +++ sys/ufs/ffs/ffs_subr.c @@ -81,6 +81,8 @@ #define UFS_FREE(ptr, type) free(ptr, type) #define UFS_TIME time_second +MALLOC_DEFINE(M_UFSMNT, "ufs_mount", "UFS mount structure"); + /* * Return buffer with the contents of block "offset" from the beginning of * directory "ip". If "res" is non-zero, fill it in with a pointer to the Index: sys/ufs/ufs/ufs_vfsops.c =================================================================== --- sys/ufs/ufs/ufs_vfsops.c +++ sys/ufs/ufs/ufs_vfsops.c @@ -62,8 +62,6 @@ #include #endif -MALLOC_DEFINE(M_UFSMNT, "ufs_mount", "UFS mount structure"); - /* * Return the root of a filesystem. */