Author: kib
Date: Thu May 26 16:51:38 2016
New Revision: 300756
URL: https://svnweb.freebsd.org/changeset/base/300756

Log:
  Style changes to some most outrageous violations in vm_object_collapse().
  
  Reviewed by:  alc
  Sponsored by: The FreeBSD Foundation
  MFC after:    1 week

Modified:
  head/sys/vm/vm_object.c

Modified: head/sys/vm/vm_object.c
==============================================================================
--- head/sys/vm/vm_object.c     Thu May 26 16:48:20 2016        (r300755)
+++ head/sys/vm/vm_object.c     Thu May 26 16:51:38 2016        (r300756)
@@ -1669,11 +1669,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:
                 *
@@ -1699,14 +1699,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
@@ -1796,8 +1795,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-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to