svn commit: r262001 - stable/10/sys/ia64/ia64

Marcel Moolenaar marcel at FreeBSD.org
Sun Feb 16 22:01:44 UTC 2014


Author: marcel
Date: Sun Feb 16 22:01:44 2014
New Revision: 262001
URL: http://svnweb.freebsd.org/changeset/base/262001

Log:
  MFC r260666:
  In the nested TLB fault handler, for a direct-mapped address, make
  sure to clear the lower 12 bits.

Modified:
  stable/10/sys/ia64/ia64/exception.S
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/ia64/ia64/exception.S
==============================================================================
--- stable/10/sys/ia64/ia64/exception.S	Sun Feb 16 21:53:33 2014	(r262000)
+++ stable/10/sys/ia64/ia64/exception.S	Sun Feb 16 22:01:44 2014	(r262001)
@@ -1026,7 +1026,7 @@ IVT_ENTRY(Data_Nested_TLB, 0x1400)
 }
 {	.mii
 	mov		cr.itir=r26
-(p12)	dep		r28=0,r30,61,3
+(p12)	dep		r28=0,r30,0,12
 (p13)	extr.u		r28=r30,3*PAGE_SHIFT-8, PAGE_SHIFT-3	// dir L0 index
 	;;
 }


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