svn commit: r320332 - head/sys/vm

Konstantin Belousov kib at FreeBSD.org
Sun Jun 25 18:41:01 UTC 2017


Author: kib
Date: Sun Jun 25 18:40:59 2017
New Revision: 320332
URL: https://svnweb.freebsd.org/changeset/base/320332

Log:
  Style.
  
  Reviewed by:	alc, markj
  Sponsored by:	The FreeBSD Foundation
  MFC after:	1 week

Modified:
  head/sys/vm/vm_map.c

Modified: head/sys/vm/vm_map.c
==============================================================================
--- head/sys/vm/vm_map.c	Sun Jun 25 18:01:27 2017	(r320331)
+++ head/sys/vm/vm_map.c	Sun Jun 25 18:40:59 2017	(r320332)
@@ -2712,9 +2712,9 @@ vm_map_wire(vm_map_t map, vm_offset_t start, vm_offset
 		 * If VM_MAP_WIRE_HOLESOK was specified, skip this check.
 		 */
 	next_entry:
-		if (((flags & VM_MAP_WIRE_HOLESOK) == 0) &&
-		    (entry->end < end && (entry->next == &map->header ||
-		    entry->next->start > entry->end))) {
+		if ((flags & VM_MAP_WIRE_HOLESOK) == 0 &&
+		    entry->end < end && (entry->next == &map->header ||
+		    entry->next->start > entry->end)) {
 			end = entry->end;
 			rv = KERN_INVALID_ADDRESS;
 			goto done;


More information about the svn-src-head mailing list