aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Cox <alc@FreeBSD.org>2004-03-13 07:09:15 +0000
committerAlan Cox <alc@FreeBSD.org>2004-03-13 07:09:15 +0000
commit0fcfb992478fb86a6d27cbef85e8d0066ed6ae7f (patch)
tree6e370a7c7abd9f3791361b4543b6613a30c04530
parent7ad4bd536a9c97d69a6105f27d1111cbf0cb0084 (diff)
Notes
-rw-r--r--sys/vm/vm_contig.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/vm/vm_contig.c b/sys/vm/vm_contig.c
index 4b9ffd23c008..53a2d6ea82bb 100644
--- a/sys/vm/vm_contig.c
+++ b/sys/vm/vm_contig.c
@@ -315,6 +315,6 @@ contigmalloc(
void
contigfree(void *addr, unsigned long size, struct malloc_type *type)
{
- GIANT_REQUIRED;
+
kmem_free(kernel_map, (vm_offset_t)addr, size);
}