svn commit: r250299 - head/sys/arm/arm
Grzegorz Bernacki
gber at FreeBSD.org
Mon May 6 16:11:53 UTC 2013
Author: gber
Date: Mon May 6 16:11:53 2013
New Revision: 250299
URL: http://svnweb.freebsd.org/changeset/base/250299
Log:
Fix page reference emulation on ARMv6 and v7
Submitted by: Zbigniew Bodek
Obtained from: Semihalf
Modified:
head/sys/arm/arm/pmap-v6.c
Modified: head/sys/arm/arm/pmap-v6.c
==============================================================================
--- head/sys/arm/arm/pmap-v6.c Mon May 6 15:58:53 2013 (r250298)
+++ head/sys/arm/arm/pmap-v6.c Mon May 6 16:11:53 2013 (r250299)
@@ -2649,6 +2649,7 @@ do_l2b_alloc:
/*
* Need to do page referenced emulation.
*/
+ npte &= ~L2_TYPE_MASK;
npte |= L2_TYPE_INV;
}
More information about the svn-src-all
mailing list