From c0432fc38bbd3a4b7c38087d57ff5293ab3af5a7 Mon Sep 17 00:00:00 2001 From: Mark Johnston Date: Wed, 7 Aug 2013 00:20:30 +0000 Subject: [PATCH] Fill in the description fields for M_FICT_PAGES. Reviewed by: kib MFC after: 3 days --- sys/vm/vm_phys.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/vm/vm_phys.c b/sys/vm/vm_phys.c index 66f3b0c540c..e55f84181e4 100644 --- a/sys/vm/vm_phys.c +++ b/sys/vm/vm_phys.c @@ -93,7 +93,7 @@ static struct vm_phys_fictitious_seg { vm_page_t first_page; } vm_phys_fictitious_segs[VM_PHYS_FICTITIOUS_NSEGS]; static struct mtx vm_phys_fictitious_reg_mtx; -MALLOC_DEFINE(M_FICT_PAGES, "", ""); +MALLOC_DEFINE(M_FICT_PAGES, "vm_fictitious", "Fictitious VM pages"); static struct vm_freelist vm_phys_free_queues[MAXMEMDOM][VM_NFREELIST][VM_NFREEPOOL][VM_NFREEORDER];