summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Feldman <green@FreeBSD.org>2004-07-19 23:29:36 +0000
committerBrian Feldman <green@FreeBSD.org>2004-07-19 23:29:36 +0000
commit757cd67065430f4bb3bf71121273208ff9e483cb (patch)
tree8de3149f504b51604a763c4ff19d7f173c37d73b
parent06167613dad447756f03175e8a3cf9d9cc39bdb0 (diff)
Notes
-rw-r--r--sys/vm/vm_contig.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/vm/vm_contig.c b/sys/vm/vm_contig.c
index 07fb96dbac87..56df9a56ebfc 100644
--- a/sys/vm/vm_contig.c
+++ b/sys/vm/vm_contig.c
@@ -327,12 +327,10 @@ again1:
static void
vm_page_release_contigl(vm_page_t m, vm_pindex_t count)
{
- mtx_lock_spin(&vm_page_queue_free_mtx);
while (count--) {
vm_page_free_toq(m);
m++;
}
- mtx_unlock_spin(&vm_page_queue_free_mtx);
}
void