svn commit: r308112 - head/sys/vm

Alan Cox alc at FreeBSD.org
Sun Oct 30 19:16:00 UTC 2016


Author: alc
Date: Sun Oct 30 19:15:59 2016
New Revision: 308112
URL: https://svnweb.freebsd.org/changeset/base/308112

Log:
  Merge and sort vm_fault_hold()'s "int" variable definitions.
  
  Reviewed by:	kib
  MFC after:	7 days

Modified:
  head/sys/vm/vm_fault.c

Modified: head/sys/vm/vm_fault.c
==============================================================================
--- head/sys/vm/vm_fault.c	Sun Oct 30 18:33:57 2016	(r308111)
+++ head/sys/vm/vm_fault.c	Sun Oct 30 19:15:59 2016	(r308112)
@@ -291,14 +291,13 @@ vm_fault_hold(vm_map_t map, vm_offset_t 
     int fault_flags, vm_page_t *m_hold)
 {
 	vm_prot_t prot;
-	int alloc_req, era, faultcount, nera, result;
-	int map_generation;
 	vm_object_t next_object;
 	struct faultstate fs;
 	struct vnode *vp;
 	vm_offset_t e_end, e_start;
 	vm_page_t m;
-	int ahead, behind, cluster_offset, error, locked, rv;
+	int ahead, alloc_req, behind, cluster_offset, error, era, faultcount;
+	int locked, map_generation, nera, result, rv;
 	u_char behavior;
 	boolean_t wired;	/* Passed by reference. */
 	bool dead, growstack, hardfault, is_first_object_locked;


More information about the svn-src-head mailing list