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

Konstantin Belousov kib at FreeBSD.org
Wed Jun 28 04:25:22 UTC 2017


Author: kib
Date: Wed Jun 28 04:25:20 2017
New Revision: 320434
URL: https://svnweb.freebsd.org/changeset/base/320434

Log:
  MFC r320201:
  Assert that the protection of a new map entry is a subset of the max
  protection.
  
  Approved by:	re (delphij)

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	Wed Jun 28 04:24:10 2017	(r320433)
+++ stable/11/sys/vm/vm_map.c	Wed Jun 28 04:25:20 2017	(r320434)
@@ -1190,6 +1190,8 @@ vm_map_insert(vm_map_t map, vm_object_t object, vm_oof
 	    ("vm_map_insert: kmem or kernel object and COW"));
 	KASSERT(object == NULL || (cow & MAP_NOFAULT) == 0,
 	    ("vm_map_insert: paradoxical MAP_NOFAULT request"));
+	KASSERT((prot & ~max) == 0,
+	    ("prot %#x is not subset of max_prot %#x", prot, max));
 
 	/*
 	 * Check that the start and end points are not bogus.


More information about the svn-src-all mailing list