aboutsummaryrefslogtreecommitdiff
path: root/sys/vm
diff options
context:
space:
mode:
authorAlan Cox <alc@FreeBSD.org>2011-11-17 06:54:49 +0000
committerAlan Cox <alc@FreeBSD.org>2011-11-17 06:54:49 +0000
commit5ff276b7f40a12ccefa7b882adbda1ad536ad55d (patch)
tree9d963a29182d1c4d4c7a04f5a94425d5c4d09412 /sys/vm
parent7859df8e67eff217a64fb45707b6e85637e3dc05 (diff)
downloadsrc-5ff276b7f40a12ccefa7b882adbda1ad536ad55d.tar.gz
src-5ff276b7f40a12ccefa7b882adbda1ad536ad55d.zip
Eliminate end-of-line white space.
Notes
Notes: svn path=/head/; revision=227606
Diffstat (limited to 'sys/vm')
-rw-r--r--sys/vm/vm_page.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/vm_page.c b/sys/vm/vm_page.c
index 3a887afa2bfb..d592ac06eb9e 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))