svn commit: r337267 - stable/11/sys/i386/i386

Mark Johnston markj at FreeBSD.org
Fri Aug 3 17:14:54 UTC 2018


Author: markj
Date: Fri Aug  3 17:14:52 2018
New Revision: 337267
URL: https://svnweb.freebsd.org/changeset/base/337267

Log:
  Fix a mismerge in r337262.
  
  This is a direct commit to stable/11.

Modified:
  stable/11/sys/i386/i386/pmap.c

Modified: stable/11/sys/i386/i386/pmap.c
==============================================================================
--- stable/11/sys/i386/i386/pmap.c	Fri Aug  3 16:44:56 2018	(r337266)
+++ stable/11/sys/i386/i386/pmap.c	Fri Aug  3 17:14:52 2018	(r337267)
@@ -802,7 +802,7 @@ pmap_init(void)
 			panic("pmap_init: pmap_insert_pt_page failed");
 	}
 	PMAP_UNLOCK(kernel_pmap);
-	vm_wire_add(NKPT);
+	atomic_add_int(&vm_cnt.v_wire_count, NKPT);
 
 	/*
 	 * Initialize the address space (zone) for the pv entries.  Set a


More information about the svn-src-stable-11 mailing list