From e6f2f7a89dc2621ce87e17f9108e2ee033544654 Mon Sep 17 00:00:00 2001 From: alc Date: Thu, 17 Nov 2011 06:54:49 +0000 Subject: Eliminate end-of-line white space. --- sys/vm/vm_page.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/vm') diff --git a/sys/vm/vm_page.c b/sys/vm/vm_page.c index 3a887af..d592ac0 100644 --- a/sys/vm/vm_page.c +++ b/sys/vm/vm_page.c @@ -1335,7 +1335,7 @@ vm_page_alloc(vm_object_t object, vm_pindex_t pindex, int req) mtx_lock(&vm_page_queue_free_mtx); if (cnt.v_free_count + cnt.v_cache_count > cnt.v_free_reserved || - (req_class == VM_ALLOC_SYSTEM && + (req_class == VM_ALLOC_SYSTEM && cnt.v_free_count + cnt.v_cache_count > cnt.v_interrupt_free_min) || (req_class == VM_ALLOC_INTERRUPT && cnt.v_free_count + cnt.v_cache_count > 0)) { @@ -1723,7 +1723,7 @@ vm_page_alloc_freelist(int flind, int req) */ mtx_lock(&vm_page_queue_free_mtx); if (cnt.v_free_count + cnt.v_cache_count > cnt.v_free_reserved || - (req_class == VM_ALLOC_SYSTEM && + (req_class == VM_ALLOC_SYSTEM && cnt.v_free_count + cnt.v_cache_count > cnt.v_interrupt_free_min) || (req_class == VM_ALLOC_INTERRUPT && cnt.v_free_count + cnt.v_cache_count > 0)) -- cgit v1.1