svn commit: r302317 - head/sys/vm

Konstantin Belousov kib at FreeBSD.org
Sun Jul 3 00:08:18 UTC 2016


Author: kib
Date: Sun Jul  3 00:08:17 2016
New Revision: 302317
URL: https://svnweb.freebsd.org/changeset/base/302317

Log:
  Change type of the 'dead' variable to boolean.
  
  Requested by:	alc
  MFC after:	1 week
  Approved by:	re (gjb)

Modified:
  head/sys/vm/vm_fault.c

Modified: head/sys/vm/vm_fault.c
==============================================================================
--- head/sys/vm/vm_fault.c	Sat Jul  2 11:54:20 2016	(r302316)
+++ head/sys/vm/vm_fault.c	Sun Jul  3 00:08:17 2016	(r302317)
@@ -285,14 +285,14 @@ vm_fault_hold(vm_map_t map, vm_offset_t 
 {
 	vm_prot_t prot;
 	int alloc_req, era, faultcount, nera, result;
-	boolean_t growstack, is_first_object_locked, wired;
+	boolean_t dead, growstack, is_first_object_locked, wired;
 	int map_generation;
 	vm_object_t next_object;
 	int hardfault;
 	struct faultstate fs;
 	struct vnode *vp;
 	vm_page_t m;
-	int ahead, behind, cluster_offset, dead, error, locked;
+	int ahead, behind, cluster_offset, error, locked;
 
 	hardfault = 0;
 	growstack = TRUE;


More information about the svn-src-all mailing list