Author: kib
Date: Thu Jun  2 02:36:06 2016
New Revision: 301183
URL: https://svnweb.freebsd.org/changeset/base/301183

Log:
  MFC r300756:
  Style.

Modified:
  stable/10/sys/vm/vm_object.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/vm/vm_object.c
==============================================================================
--- stable/10/sys/vm/vm_object.c        Thu Jun  2 01:59:41 2016        
(r301182)
+++ stable/10/sys/vm/vm_object.c        Thu Jun  2 02:36:06 2016        
(r301183)
@@ -1673,11 +1673,11 @@ vm_object_qcollapse(vm_object_t object)
 void
 vm_object_collapse(vm_object_t object)
 {
+       vm_object_t backing_object, new_backing_object;
+
        VM_OBJECT_ASSERT_WLOCKED(object);
-       
-       while (TRUE) {
-               vm_object_t backing_object;
 
+       while (TRUE) {
                /*
                 * Verify that the conditions are right for collapse:
                 *
@@ -1703,14 +1703,13 @@ vm_object_collapse(vm_object_t object)
                        break;
                }
 
-               if (
-                   object->paging_in_progress != 0 ||
-                   backing_object->paging_in_progress != 0
-               ) {
+               if (object->paging_in_progress != 0 ||
+                   backing_object->paging_in_progress != 0) {
                        vm_object_qcollapse(object);
                        VM_OBJECT_WUNLOCK(backing_object);
                        break;
                }
+
                /*
                 * We know that we can either collapse the backing object (if
                 * the parent is the only reference to it) or (perhaps) have
@@ -1800,8 +1799,6 @@ vm_object_collapse(vm_object_t object)
 
                        object_collapses++;
                } else {
-                       vm_object_t new_backing_object;
-
                        /*
                         * If we do not entirely shadow the backing object,
                         * there is nothing we can do so we give up.
_______________________________________________
svn-src-stable-10@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-stable-10
To unsubscribe, send any mail to "svn-src-stable-10-unsubscr...@freebsd.org"

Reply via email to