Remove GIANT_REQUIRED from contigfree().

This commit is contained in:
alc 2004-03-13 07:09:15 +00:00
parent 48af8aa9c0
commit 4fad4b8d26

View File

@ -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);
}