svn commit: r336133 - stable/11/sys/vm

Konstantin Belousov kib at FreeBSD.org
Mon Jul 9 13:38:20 UTC 2018


Author: kib
Date: Mon Jul  9 13:38:19 2018
New Revision: 336133
URL: https://svnweb.freebsd.org/changeset/base/336133

Log:
  MFC r336029:
  Style.

Modified:
  stable/11/sys/vm/vm_map.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/vm/vm_map.c
==============================================================================
--- stable/11/sys/vm/vm_map.c	Mon Jul  9 11:35:18 2018	(r336132)
+++ stable/11/sys/vm/vm_map.c	Mon Jul  9 13:38:19 2018	(r336133)
@@ -3096,9 +3096,8 @@ vm_map_delete(vm_map_t map, vm_offset_t start, vm_offs
 		 * Unwire before removing addresses from the pmap; otherwise,
 		 * unwiring will put the entries back in the pmap.
 		 */
-		if (entry->wired_count != 0) {
+		if (entry->wired_count != 0)
 			vm_map_entry_unwire(map, entry);
-		}
 
 		pmap_remove(map->pmap, entry->start, entry->end);
 


More information about the svn-src-all mailing list