Author: alc
Date: Thu Nov 17 06:54:49 2011
New Revision: 227606
URL: http://svn.freebsd.org/changeset/base/227606
Log:
Eliminate end-of-line white space.
Modified:
head/sys/vm/vm_page.c
Modified: head/sys/vm/vm_page.c
==============================================================================
--- head/sys/vm/vm_page.c Thu Nov 17 03:34:48 2011 (r227605)
+++ head/sys/vm/vm_page.c Thu Nov 17 06:54:49 2011 (r227606)
@@ -1335,7 +1335,7 @@ vm_page_alloc(vm_object_t object, vm_pin
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 re
*/
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))
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"