svn commit: r308363 - stable/11/sys/vm
Konstantin Belousov
kib at FreeBSD.org
Sun Nov 6 12:56:08 UTC 2016
Author: kib
Date: Sun Nov 6 12:56:07 2016
New Revision: 308363
URL: https://svnweb.freebsd.org/changeset/base/308363
Log:
MFC r308114:
Change remained internal uses of boolean_t to bool in vm/vm_fault.c.
Modified:
stable/11/sys/vm/vm_fault.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/vm/vm_fault.c
==============================================================================
--- stable/11/sys/vm/vm_fault.c Sun Nov 6 12:52:13 2016 (r308362)
+++ stable/11/sys/vm/vm_fault.c Sun Nov 6 12:56:07 2016 (r308363)
@@ -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-stable
mailing list