Author: ros-arm-bringup
Date: Sun Jul 13 18:32:38 2008
New Revision: 34479
URL: http://svn.reactos.org/svn/reactos?rev=34479&view=rev
Log:
- Prefetch aborts behave like other exceptions, not like data aborts, in terms of the PC offset due to the pipeline behavior. So call TRAP_PROLOG with 0, not 1
Modified:
trunk/reactos/ntoskrnl/ke/arm/trap.s
Modified: trunk/reactos/ntoskrnl/ke/arm/trap.s
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ke/arm/trap.s?rev…
==============================================================================
--- trunk/reactos/ntoskrnl/ke/arm/trap.s [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ke/arm/trap.s [iso-8859-1] Sun Jul 13 18:32:38 2008
@@ -69,7 +69,7 @@
//
// Handle trap entry
//
- TRAP_PROLOG 1 // FromAbort
+ TRAP_PROLOG 0 // NotFromAbort
//
// Call the C handler
Author: ros-arm-bringup
Date: Sun Jul 13 17:15:23 2008
New Revision: 34470
URL: http://svn.reactos.org/svn/reactos?rev=34470&view=rev
Log:
- Get rid of a really-early debug print, since it's done before KdInit and thus will never be seen.
Modified:
trunk/reactos/ntoskrnl/ke/arm/cpu.c
Modified: trunk/reactos/ntoskrnl/ke/arm/cpu.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ke/arm/cpu.c?rev=…
==============================================================================
--- trunk/reactos/ntoskrnl/ke/arm/cpu.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ke/arm/cpu.c [iso-8859-1] Sun Jul 13 17:15:23 2008
@@ -89,7 +89,6 @@
//
// On these systems, we'll just keep the PTE mapped
//
- DPRINT1("TLB Lockdown Failure (%p). Running on QEMU?\n", Virtual);
}
else
{