svn commit: r308114 - head/sys/vm

Konstantin Belousov kib at FreeBSD.org
Sun Oct 30 20:39:39 UTC 2016


Author: kib
Date: Sun Oct 30 20:39:38 2016
New Revision: 308114
URL: https://svnweb.freebsd.org/changeset/base/308114

Log:
  Change remained internal uses of boolean_t to bool in vm/vm_fault.c.
  
  Reviewed by:	alc
  Sponsored by:	The FreeBSD Foundation
  MFC after:	1 week

Modified:
  head/sys/vm/vm_fault.c

Modified: head/sys/vm/vm_fault.c
==============================================================================
--- head/sys/vm/vm_fault.c	Sun Oct 30 20:38:57 2016	(r308113)
+++ head/sys/vm/vm_fault.c	Sun Oct 30 20:39:38 2016	(r308114)
@@ -184,9 +184,9 @@ unlock_and_deallocate(struct faultstate 
 
 static void
 vm_fault_dirty(vm_map_entry_t entry, vm_page_t m, vm_prot_t prot,
-    vm_prot_t fault_type, int fault_flags, boolean_t set_wd)
+    vm_prot_t fault_type, int fault_flags, bool set_wd)
 {
-	boolean_t need_dirty;
+	bool need_dirty;
 
 	if (((prot & VM_PROT_WRITE) == 0 &&
 	    (fault_flags & VM_FAULT_DIRTY) == 0) ||
@@ -397,7 +397,7 @@ RetryFault:;
 			vm_page_unlock(m);
 		}
 		vm_fault_dirty(fs.entry, m, prot, fault_type, fault_flags,
-		    FALSE);
+		    false);
 		VM_OBJECT_RUNLOCK(fs.first_object);
 		if (!wired)
 			vm_fault_prefault(&fs, vaddr, PFBAK, PFFOR);
@@ -987,7 +987,7 @@ readrest:
 	if (hardfault)
 		fs.entry->next_read = vaddr + ptoa(ahead) + PAGE_SIZE;
 
-	vm_fault_dirty(fs.entry, fs.m, prot, fault_type, fault_flags, TRUE);
+	vm_fault_dirty(fs.entry, fs.m, prot, fault_type, fault_flags, true);
 	vm_page_assert_xbusied(fs.m);
 
 	/*


More information about the svn-src-head mailing list