aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/md
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/md')
-rw-r--r--sys/dev/md/md.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/md/md.c b/sys/dev/md/md.c
index 9a2d0370f69c..749e7a92d343 100644
--- a/sys/dev/md/md.c
+++ b/sys/dev/md/md.c
@@ -93,8 +93,8 @@
#define MD_NSECT (10000 * 2)
#endif
-MALLOC_DEFINE(M_MD, "MD disk", "Memory Disk");
-MALLOC_DEFINE(M_MDSECT, "MD sectors", "Memory Disk Sectors");
+static MALLOC_DEFINE(M_MD, "MD disk", "Memory Disk");
+static MALLOC_DEFINE(M_MDSECT, "MD sectors", "Memory Disk Sectors");
static int md_debug;
SYSCTL_INT(_debug, OID_AUTO, mddebug, CTLFLAG_RW, &md_debug, 0, "");