With yesterdays cvs tree and SMP=1,ACPI=1,DBG=1,KDBG=1 and deleted vmwinst.exe I got this bugcheck on real HW, when it is doing initial boot to display ROS`s syssetup, SMP machine :
(ke/ipi.c: 91) Waiting longer than 5 seconds to start the ipi routine
KeBugCheck at ke/ipi.c: 92
snip
(api.c: 758) Spurious interrupt on CPU(0)
Regards, David
Hi,
I see the same bug if I install from the cdrom. Previously, I've always copied the smp installation over an existing one. In this way, the smp build works on my machine. I will investigate for the problem.
- Hartmut
David Kredba schrieb:
With yesterdays cvs tree and SMP=1,ACPI=1,DBG=1,KDBG=1 and deleted vmwinst.exe I got this bugcheck on real HW, when it is doing initial boot to display ROS`s syssetup, SMP machine :
(ke/ipi.c: 91) Waiting longer than 5 seconds to start the ipi routine
KeBugCheck at ke/ipi.c: 92
snip
(api.c: 758) Spurious interrupt on CPU(0)
Regards, David _______________________________________________ Ros-dev mailing list Ros-dev@reactos.com http://reactos.com:8080/mailman/listinfo/ros-dev
Hi,
forget my last mail. My crash wasn't related to the smp build. Possible it is a problem of the kernel debuger. The kernel debuger doesn't work correctly on a smp machine.
- Hartmut
Hartmut Birr schrieb:
Hi,
I see the same bug if I install from the cdrom. Previously, I've always copied the smp installation over an existing one. In this way, the smp build works on my machine. I will investigate for the problem.
- Hartmut
David Kredba schrieb:
With yesterdays cvs tree and SMP=1,ACPI=1,DBG=1,KDBG=1 and deleted vmwinst.exe I got this bugcheck on real HW, when it is doing initial boot to display ROS`s syssetup, SMP machine :
(ke/ipi.c: 91) Waiting longer than 5 seconds to start the ipi routine
KeBugCheck at ke/ipi.c: 92
snip
(api.c: 758) Spurious interrupt on CPU(0)
Regards, David
Hi!
I think the kernel debugger does not halt the other CPUs when it is entered - this is the first problem which I could think of.
Just my two cents :) -blight
Hartmut Birr wrote:
Hi,
forget my last mail. My crash wasn't related to the smp build. Possible it is a problem of the kernel debuger. The kernel debuger doesn't work correctly on a smp machine.
- Hartmut
With current cvs tree, booted from freeldr floppy and hdd, same config I got :
(ke/ipi.c: 114) Waiting longer than 5 seconds to start the ipi routine
KeBugCheck at ke/ipi.c: 115
ntoskrnl.exe : misc KeBugCheck and _KiIpiServiceRoutine@8 little interestig is frame 3db0 :
c0003da0 <_PsBeginThread>:
/* * Do the necessary prolog after a context switch */ call _PiBeforeBeginThread c0003da0: e8 b1 ec 0a 00 call c00b2a56 <_PiBeforeBeginThread>
/* * Call the actual start of the thread */ movl 4(%esp), %ebx /* Start routine */ c0003da5: 8b 5c 24 04 mov 0x4(%esp),%ebx movl 8(%esp), %eax /* Start context */ c0003da9: 8b 44 24 08 mov 0x8(%esp),%eax pushl %eax c0003dad: 50 push %eax call *%ebx /* Call the start routine */ c0003dae: ff d3 call *%ebx addl $4, %esp c0003db0: 83 c4 04 add $0x4,%esp
/* * Terminate the thread */
hal.dll :
First frame is 186a0 :
Ki386EnableInterrupts(); 18693: fb sti #if 0 DbgPrint("(%s:%d) MpsIpiHandler on CPU%d, current irql is %d\n", __FILE__,__LINE__, KeGetCurrentProcessorNumber(), KeGetCurrentIrql()); #endif
KiIpiServiceRoutine(NULL, NULL); 18694: 83 ec 08 sub $0x8,%esp 18697: 6a 00 push $0x0 18699: 6a 00 push $0x0 1869b: e8 20 31 00 00 call 1b7c0 _KiIpiServiceRoutine@8 186a0: 83 c4 08 add $0x8,%esp
#if 0 DbgPrint("(%s:%d) MpsIpiHandler on CPU%d done\n", __FILE__,__LINE__, KeGetCurrentProcessorNumber()); #endif
Ki386DisableInterrupts();
the second frame is : 190ff
000190e0 <_MpsIpiInterrupt>:
.global _MpsIpiInterrupt _MpsIpiInterrupt: /* Save registers */ BEFORE 190e0: fc cld 190e1: 60 pusha 190e2: 1e push %ds 190e3: 06 push %es 190e4: 0f a0 push %fs 190e6: 0f a8 push %gs 190e8: b8 10 00 00 00 mov $0x10,%eax 190ed: 8e d8 mov %eax,%ds 190ef: 8e c0 mov %eax,%es 190f1: 8e e8 mov %eax,%gs 190f3: b8 30 00 00 00 mov $0x30,%eax 190f8: 8e e0 mov %eax,%fs
/* Call the C handler */ call _MpsIpiHandler 190fa: e8 78 f5 ff ff call 18677 <_MpsIpiHandler>
/* Return to the caller */ AFTER 190ff: 0f a9 pop %gs 19101: 0f a1 pop %fs 19103: 07 pop %es 19104: 1f pop %ds 19105: 61 popa iret 19106: cf iret
00019107 <_MpsErrorInterrupt>:
Regards, David
Hi,
the bugcheck from the ipi routine occurs, if one processor requests a function which must be execute synchronous on all processors and if one processor doesn't execute the function within 5 seconds. Currently it exist only one of such a function. The function is MiFlushTlbIpiRoutine which is called if a memory mapping is changed or deleted. I've add the time limit to the ipi execution to stop all execution if one processor hangs. Usually the call frames are not interesting. The interesting part is why the ipi is not delivered. Can you describe your hardware a little bit? If you use a early P2B-DS board from asus, possible you must add a hardware fix (moving a 0 ohm resistor). Can you enable the debug prints from MpsTimerHandler in apic.c? You must change all the '#if 0' to '#if 1' in MpsTimerHandler. If you enable this lines, you should have a second computer for debug prints.
- Hartmut
David Kredba schrieb:
With current cvs tree, booted from freeldr floppy and hdd, same config I got :
(ke/ipi.c: 114) Waiting longer than 5 seconds to start the ipi routine
KeBugCheck at ke/ipi.c: 115
ntoskrnl.exe : misc KeBugCheck and _KiIpiServiceRoutine@8 little interestig is frame 3db0 :
c0003da0 <_PsBeginThread>:
/* * Do the necessary prolog after a context switch */ call _PiBeforeBeginThreadc0003da0: e8 b1 ec 0a 00 call c00b2a56 <_PiBeforeBeginThread>
/* * Call the actual start of the thread */ movl 4(%esp), %ebx /* Start routine */c0003da5: 8b 5c 24 04 mov 0x4(%esp),%ebx movl 8(%esp), %eax /* Start context */ c0003da9: 8b 44 24 08 mov 0x8(%esp),%eax pushl %eax c0003dad: 50 push %eax call *%ebx /* Call the start routine */ c0003dae: ff d3 call *%ebx addl $4, %esp c0003db0: 83 c4 04 add $0x4,%esp
/* * Terminate the thread */hal.dll :
First frame is 186a0 :
Ki386EnableInterrupts(); 18693: fb sti #if 0 DbgPrint("(%s:%d) MpsIpiHandler on CPU%d, current irql is %d\n", __FILE__,__LINE__, KeGetCurrentProcessorNumber(), KeGetCurrentIrql()); #endif
KiIpiServiceRoutine(NULL, NULL); 18694: 83 ec 08 sub $0x8,%esp 18697: 6a 00 push $0x0 18699: 6a 00 push $0x0 1869b: e8 20 31 00 00 call 1b7c0 _KiIpiServiceRoutine@8 186a0: 83 c4 08 add $0x8,%esp
#if 0 DbgPrint("(%s:%d) MpsIpiHandler on CPU%d done\n", __FILE__,__LINE__, KeGetCurrentProcessorNumber()); #endif
Ki386DisableInterrupts();
the second frame is : 190ff
000190e0 <_MpsIpiInterrupt>:
.global _MpsIpiInterrupt _MpsIpiInterrupt: /* Save registers */ BEFORE 190e0: fc cld 190e1: 60 pusha 190e2: 1e push %ds 190e3: 06 push %es 190e4: 0f a0 push %fs 190e6: 0f a8 push %gs 190e8: b8 10 00 00 00 mov $0x10,%eax 190ed: 8e d8 mov %eax,%ds 190ef: 8e c0 mov %eax,%es 190f1: 8e e8 mov %eax,%gs 190f3: b8 30 00 00 00 mov $0x30,%eax 190f8: 8e e0 mov %eax,%fs
/* Call the C handler */ call _MpsIpiHandler 190fa: e8 78 f5 ff ff call 18677 <_MpsIpiHandler>
/* Return to the caller */AFTER 190ff: 0f a9 pop %gs 19101: 0f a1 pop %fs 19103: 07 pop %es 19104: 1f pop %ds 19105: 61 popa iret 19106: cf iret
00019107 <_MpsErrorInterrupt>:
Regards, David _______________________________________________ Ros-dev mailing list Ros-dev@reactos.com http://reactos.com:8080/mailman/listinfo/ros-dev
It is MSI 694 Pro D2. VIA chipset. Two PIII 866 MHZ. One 512 MB module.
On this machine runs fine both linux-2.4 smp, linux-2.6 smp and windows.
I can enable debug prints in apic.c. I have serial laplink for debugging and second computer.
I had never do "remote" debugging throught serial port.
Is it possible by gdb ?
As I can see, I must enable DEBUGPORT in freeldr.ini and connect machine with debugger.
David
David Kredba schrieb:
It is MSI 694 Pro D2. VIA chipset. Two PIII 866 MHZ. One 512 MB module.
On this machine runs fine both linux-2.4 smp, linux-2.6 smp and windows.
I can enable debug prints in apic.c. I have serial laplink for debugging and second computer.
I had never do "remote" debugging throught serial port.
Is it possible by gdb ?
As I can see, I must enable DEBUGPORT in freeldr.ini and connect machine with debugger.
David _______________________________________________ Ros-dev mailing list Ros-dev@reactos.com http://reactos.com:8080/mailman/listinfo/ros-dev
Hi,
for enabling the serial port you must change freeldr.ini. If you will see the debug prints while installing from the cd, you must change OsLoadOptions in txtsetup.sif. I've never used gdb. I use the serial line only for debug prints. On the second computer you can use any terminal program. I'm using Teraterm for windows.
- Hartmut
I changed the the apic.c.
Installed ROS over the network to HDD, changed freeldr.ini : /DEBUG /DEBUGPORT=COM1 /BAUDRATE=19200 and ran linux minicom in kermit mode on the second computer and got this :
wĄ~*Ą'.ď0ť°w.n= !..ď...19~....)..1.s#).y.. .-)..ą.4§=gcc#.1á§= -J4!1ą.ů
ě
y
.
In a clear listen mode of minicom I got :
..VC.k.ż.VC.s.˙.....
Should I use Windows terminal program ?
It looks like garbage, isn`t it ?
Thanks, David
From: David Kredba
I changed the the apic.c.
Installed ROS over the network to HDD, changed freeldr.ini : /DEBUG /DEBUGPORT=COM1 /BAUDRATE=19200 and ran linux minicom in kermit mode on the second computer and got this :
wĄ~*Ą'.ď0ť°w.n=
Try reversing /DEBUGPORT=COM1 and /BAUDRATE=19200:
/DEBUG /BAUDRATE=19200 /DEBUGPORT=COM1
Or try setting the baudrate at the minicom end to 115200.
Gé van Geldorp.
You are right !
Thank you very much.
Miniciom set to 115200 baudrate got it.
Found MPF signature at f5c70, checksum 0 Intel MultiProcessor Specification v1.4 compliant system. apic.c:458 (apic.c:461) Getting VERSION: 40011 (apic.c:464) Getting VERSION: 40011 (apic.c:495) Getting ID: 0 (apic.c:498) Getting ID: f000000 (apic.c:580) CPU0: (apic.c:581) Physical APIC id: 0 (apic.c:582) Logical APIC id: 0 (apic.c:583) 00000000 00000000 ffffffff (apic.c:610) CPU0: (apic.c:611) Physical APIC id: 0 (apic.c:612) Logical APIC id: 1 (apic.c:613) 00000000 01000000 ffffffff (apic.c:614) 0 (apic.c:645) enabled ExtINT on CPU#0 Used memory 524224Kb (processor_mp.c:1077) Attempting to boot CPU 1 (apic.c:580) CPU1: (apic.c:581) Physical APIC id: 1 (apic.c:582) Logical APIC id: 0 (apic.c:583) 01000000 00000000 ffffffff (apic.c:610) CPU1: (apic.c:611) Physical APIC id: 1 (apic.c:612) Logical APIC id: 2 (apic.c:613) 01000000 02000000 ffffffff (apic.c:614) 1 (apic.c:650) masked ExtINT on CPU#1 CPU 1 is now running (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b3d6a, KPCR = ff001000 (ke/ipi.c:114) Waiting longer than 5 seconds after executing the ipi routine KeBugCheck at ke/ipi.c:115 Bug detected (code 0 param 0 0 0 0) The bug code is undefined. Please use an existing code instead.
Ge van Geldorp wrote:
From: David Kredba
I changed the the apic.c.
Installed ROS over the network to HDD, changed freeldr.ini : /DEBUG /DEBUGPORT=COM1 /BAUDRATE=19200 and ran linux minicom in kermit mode on the second computer and got this :
wĄ~*Ą'.ď0ť°w.n=
Try reversing /DEBUGPORT=COM1 and /BAUDRATE=19200:
/DEBUG /BAUDRATE=19200 /DEBUGPORT=COM1
Or try setting the baudrate at the minicom end to 115200.
Gé van Geldorp.
Ros-dev mailing list Ros-dev@reactos.com http://reactos.com:8080/mailman/listinfo/ros-dev
Hi David,
currently I do not know what's wrong. I see one difference to my smp machine. On my machine the boot cpu has the physical id 1 and the second cpu has the id 0. This is not a problem, because after booting ros assign the logical ids and use always the logical ids. Can you please enable the debug prints from MpsIpiHandler ( halx86\mp\apic.c line #781 and #788) and try it again? I attached the debug output from my machine. It is nearly the same as yours.
- Hartmut
Found MPF signature at f6ef0, checksum 0 Intel MultiProcessor Specification v1.4 compliant system. apic.c:458 (apic.c:461) Getting VERSION: 40011 (apic.c:464) Getting VERSION: 40011 (apic.c:495) Getting ID: 1000000 (apic.c:498) Getting ID: e000000 (apic.c:580) CPU1: (apic.c:581) Physical APIC id: 1 (apic.c:582) Logical APIC id: 0 (apic.c:583) 01000000 00000000 ffffffff (apic.c:610) CPU1: (apic.c:611) Physical APIC id: 1 (apic.c:612) Logical APIC id: 1 (apic.c:613) 01000000 01000000 ffffffff (apic.c:614) 0 (apic.c:645) enabled ExtINT on CPU#1 Used memory 360436Kb ******* Dumping non paging pool stats ****** Tag ffffffff Blocks 1 Total Size 3200 Average Size 3200 TotalBlocks 1 TotalSize 3200 AverageSize 3200 Freeblocks 1 TotalFreeSize 816 AverageFreeSize 816 ***************** Dump Complete *************** MC_CACHE 0, MC_USER 0, MC_PPOOL 0, MC_NPPOOL 1622, MmStats.NrFreePages 88487 (processor_mp.c:1077) Attempting to boot CPU 0 (apic.c:580) CPU0: (apic.c:581) Physical APIC id: 0 (apic.c:582) Logical APIC id: 0 (apic.c:583) 00000000 00000000 ffffffff (apic.c:610) CPU0: (apic.c:611) Physical APIC id: 0 (apic.c:612) Logical APIC id: 2 (apic.c:613) 00000000 02000000 ffffffff (apic.c:614) 1 (apic.c:650) masked ExtINT on CPU#0 CPU 0 is now running (apic.c:834) MpsTimerHandler on CPU0, irql = 0, epi = 800680ea, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 2, epi = 80010ebf, KPCR = ff000000 (ke/main.c:601) Module: 'ntoskrnl.exe' at 80000000, length 0x000e3000 (ke/main.c:601) Module: 'HAL.DLL' at 800e3000, length 0x00019d96 (ke/main.c:601) Module: 'SYSTEM' at 800fd000, length 0x00010000 ...
There it is.
Thanks,
David
Found MPF signature at f5c70, checksum 0 Intel MultiProcessor Specification v1.4 compliant system. apic.c:458 (apic.c:461) Getting VERSION: 40011 (apic.c:464) Getting VERSION: 40011 (apic.c:495) Getting ID: 0 (apic.c:498) Getting ID: f000000 (apic.c:580) CPU0: (apic.c:581) Physical APIC id: 0 (apic.c:582) Logical APIC id: 0 (apic.c:583) 00000000 00000000 ffffffff (apic.c:610) CPU0: (apic.c:611) Physical APIC id: 0 (apic.c:612) Logical APIC id: 1 (apic.c:613) 00000000 01000000 ffffffff (apic.c:614) 0 (apic.c:645) enabled ExtINT on CPU#0 Used memory 524224Kb (processor_mp.c:1077) Attempting to boot CPU 1 (apic.c:580) CPU1: (apic.c:581) Physical APIC id: 1 (apic.c:582) Logical APIC id: 0 (apic.c:583) 01000000 00000000 ffffffff (apic.c:610) CPU1: (apic.c:611) Physical APIC id: 1 (apic.c:612) Logical APIC id: 2 (apic.c:613) 01000000 02000000 ffffffff (apic.c:614) 1 (apic.c:650) masked ExtINT on CPU#1 CPU 1 is now running (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b490a, KPCR = ff001000 (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:114) Waiting longer than 5 seconds after executing the ipi routine KeBugCheck at ke/ipi.c:115 Bug detected (code 0 param 0 0 0 0) The bug code is undefined. Please use an existing code instead.
Frames: <ntoskrnl.exe: d45a> <ntoskrnl.exe: d47a> <ntoskrnl.exe: ff9a> <hal.dll
David Kredba schrieb:
(apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:114) Waiting longer than 5 seconds after executing the ipi routine KeBugCheck at ke/ipi.c:115 Bug detected (code 0 param 0 0 0 0) The bug code is undefined. Please use an existing code instead.
Hi David,
it seems, that the ipi's are delivered correctly between the processors and that at least one processor has executed the requested routine. I've add more debug prints. I hope to see, at which point the execution of the ipi routine stops. Please attach my patch and try it again.
- Hartmut
E:\Sandbox\ros_mp\reactos>set CVS_RSH=SSH2
E:\Sandbox\ros_mp\reactos>d:\programme\cvsnt\cvs.exe -z6 -d :ext:hbirr@osexperts.com:/CVS/ReactOS diff -u ntoskrnl\include\config.h ntoskrnl\ke\ipi.c Index: ntoskrnl/include/config.h =================================================================== RCS file: /CVS/ReactOS/reactos/ntoskrnl/include/config.h,v retrieving revision 1.3 diff -u -r1.3 config.h --- ntoskrnl/include/config.h 10 Dec 2004 14:58:26 -0000 1.3 +++ ntoskrnl/include/config.h 19 Dec 2004 11:44:34 -0000 @@ -11,7 +11,7 @@ * It could happen that some messages are lost if the processor is halted before * the message queue was flushed. */ -#undef SERIALIZE_DBGPRINT +#define SERIALIZE_DBGPRINT
/********** mm/ppool.c **********/
Index: ntoskrnl/ke/ipi.c =================================================================== RCS file: /CVS/ReactOS/reactos/ntoskrnl/ke/ipi.c,v retrieving revision 1.4 diff -u -r1.4 ipi.c --- ntoskrnl/ke/ipi.c 27 Nov 2004 16:32:10 -0000 1.4 +++ ntoskrnl/ke/ipi.c 19 Dec 2004 11:44:34 -0000 @@ -57,7 +57,7 @@
ASSERT(KeGetCurrentIrql() == IPI_LEVEL);
- DPRINT("KiIpiServiceRoutine\n"); + DbgPrint("(%s:%d) CPU%d, KiIpiServiceRoutine\n", __FILE__, __LINE__, KeGetCurrentProcessorNumber());
Pcr = KeGetCurrentKPCR();
@@ -88,13 +88,15 @@ CurrentTime = KeQueryPerformanceCounter(NULL); if (CurrentTime.QuadPart > StartTime.QuadPart + Count * Frequency.QuadPart) { - DPRINT1("Waiting longer than %d seconds to start the ipi routine\n", Count); + DbgPrint("(%s:%d) CPU%d, waiting longer than %d seconds to start the ipi routine\n", __FILE__,__LINE__, KeGetCurrentProcessorNumber(), Count); KEBUGCHECK(0); } #endif } } + DbgPrint("(%s:%d) CPU%d, before executing the worker routine\n", __FILE__,__LINE__, KeGetCurrentProcessorNumber()); ((VOID STDCALL(*)(PVOID))(Pcr->PrcbData.SignalDone->WorkerRoutine))(Pcr->PrcbData.SignalDone->CurrentPacket[0]); + DbgPrint("(%s:%d) CPU%d, after executing the worker routine\n", __FILE__,__LINE__, KeGetCurrentProcessorNumber()); do { Processor = 1 << KeGetCurrentProcessorNumber(); @@ -111,7 +113,7 @@ CurrentTime = KeQueryPerformanceCounter(NULL); if (CurrentTime.QuadPart > StartTime.QuadPart + Count * Frequency.QuadPart) { - DPRINT1("Waiting longer than %d seconds after executing the ipi routine\n", Count); + DbgPrint("(%s:%d) CPU%d, waiting longer than %d seconds after executing the ipi routine\n", __FILE__,__LINE__, KeGetCurrentProcessorNumber(), Count); KEBUGCHECK(0); } #endif @@ -120,7 +122,7 @@ InterlockedExchangePointer(&Pcr->PrcbData.SignalDone, NULL); Pcr->PrcbData.IpiFrozen &= ~IPI_REQUEST_FUNCTIONCALL; } - DPRINT("KiIpiServiceRoutine done\n"); + DbgPrint("(%s:%d) CPU%d, KiIpiServiceRoutine done\n", __FILE__, __LINE__, KeGetCurrentProcessorNumber()); return TRUE; }
@@ -171,7 +173,7 @@ KIRQL oldIrql; ULONG TargetSet;
- DPRINT("KeIpiGenericCall on CPU%d\n", KeGetCurrentProcessorNumber()); + DbgPrint("(%s:%d) KeIpiGenericCall on CPU%d\n", __FILE__, __LINE__, KeGetCurrentProcessorNumber());
KeRaiseIrql(SYNCH_LEVEL, &oldIrql);
@@ -185,7 +187,7 @@
KeLowerIrql(oldIrql);
- DPRINT("KeIpiGenericCall on CPU%d done\n", KeGetCurrentProcessorNumber()); + DbgPrint("(%s:%d) KeIpiGenericCall on CPU%d done\n", __FILE__, __LINE__, KeGetCurrentProcessorNumber()); }
There is debug output.
It is truncated at the end. It is growing by many lines of this type (one about 750 ms) :
apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000
occasionaly followed by this line :
(apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aa9, KPCR = ff001000.
Should I send You full output ? It is still growing.
Thanks, David
Found MPF signature at f5c70, checksum 0 Intel MultiProcessor Specification v1.4 compliant system. apic.c:458 (apic.c:461) Getting VERSION: 40011 (apic.c:464) Getting VERSION: 40011 (apic.c:495) Getting ID: 0 (apic.c:498) Getting ID: f000000 (apic.c:580) CPU0: (apic.c:581) Physical APIC id: 0 (apic.c:582) Logical APIC id: 0 (apic.c:583) 00000000 00000000 ffffffff (apic.c:610) CPU0: (apic.c:611) Physical APIC id: 0 (apic.c:612) Logical APIC id: 1 (apic.c:613) 00000000 01000000 ffffffff (apic.c:614) 0 (apic.c:645) enabled ExtINT on CPU#0 Used memory 524224Kb (processor_mp.c:1077) Attempting to boot CPU 1 (apic.c:580) CPU1: (apic.c:581) Physical APIC id: 1 (apic.c:582) Logical APIC id: 0 (apic.c:583) 01000000 00000000 ffffffff (apic.c:610) CPU1: (apic.c:611) Physical APIC id: 1 (apic.c:612) Logical APIC id: 2 (apic.c:613) 01000000 02000000 ffffffff (apic.c:614) 1 (apic.c:650) masked ExtINT on CPU#1 CPU 1 is now running (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (apic.c:834) MpsTimerHandler on CPU0, irql = 2, epi = c0012c79, KPCR = ff000000 (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (apic.c:834) MpsTimerHandler on CPU0, irql = 1, epi = c035ca86, KPCR = ff000000 (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (ke/main.c:599) Module: 'ntoskrnl.exe' at c0000000, length 0x00164000 (ke/main.c:599) Module: 'HAL.DLL' at c0164000, length 0x00019d60 (ke/main.c:599) Module: 'SYSTEM' at c017e000, length 0x00011000 (ke/main.c:599) Module: 'HARDWARE' at c0190000, length 0x00004000 (ke/main.c:599) Module: 'ansi.nls' at c0195000, length 0x00010222 (ke/main.c:599) Module: 'oem.nls' at c01a6000, length 0x00010422 (ke/main.c:599) Module: 'casemap.nls' at c01b7000, length 0x00001306 (ke/main.c:599) Module: 'NTOSKRNL.sym' at c01b9000, length 0x000c3b36 (ke/main.c:599) Module: 'pci.sys' at c027d000, length 0x0000a149 (ke/main.c:599) Module: 'pci.sym' at c0288000, length 0x00002b16 (ke/main.c:599) Module: 'scsiport.sys' at c028b000, length 0x0000e832 (ke/main.c:599) Module: 'scsiport.sym' at c029a000, length 0x000037f5 (ke/main.c:599) Module: 'atapi.sys' at c029e000, length 0x0000b18b (ke/main.c:599) Module: 'atapi.sym' at c02aa000, length 0x000031db (ke/main.c:599) Module: 'class2.sys' at c02ae000, length 0x0000c52c (ke/main.c:599) Module: 'class2.sym' at c02bb000, length 0x00002cf4 (ke/main.c:599) Module: 'disk.sys' at c02be000, length 0x000102a2 (ke/main.c:599) Module: 'disk.sym' at c02cf000, length 0x00002240 (ke/main.c:599) Module: 'vfatfs.sys' at c02d2000, length 0x000219e3 (ke/main.c:599) Module: 'vfatfs.sym' at c02f4000, length 0x0000c12b (ke/main.c:599) Module: 'bootvid.sys' at c0301000, length 0x00020afb (ke/main.c:599) Module: 'bootvid.sym' at c0322000, length 0x0000106d (ke/main.c:599) Module: 'ndis.sys' at c0324000, length 0x00023864 (ke/main.c:599) Module: 'ndis.sym' at c0348000, length 0x0000b3af (ke/main.c:623) Process system hive registry chunk at c017e000 (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (apic.c:834) MpsTimerHandler on CPU0, irql = 1, epi = c035ca86, KPCR = ff000000 (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/main.c:638) Process hardware hive registry chunk at c0190000 (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done (ke/ipi.c:176) KeIpiGenericCall on CPU0 (ke/ipi.c:60) CPU0, KiIpiServiceRoutine (apic.c:782) MpsIpiHandler on CPU1, current irql is 29 (ke/ipi.c:60) CPU1, KiIpiServiceRoutine (ke/ipi.c:97) CPU0, before executing the worker routine (ke/ipi.c:97) CPU1, before executing the worker routine (ke/ipi.c:99) CPU1, after executing the worker routine (ke/ipi.c:99) CPU0, after executing the worker routine (ke/ipi.c:125) CPU0, KiIpiServiceRoutine done (ke/ipi.c:125) CPU1, KiIpiServiceRoutine done (apic.c:788) MpsIpiHandler on CPU1 done (ke/ipi.c:190) KeIpiGenericCall on CPU0 done
Entered kernel debugger (type "help" for a list of commands)
kdb:> (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff0 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aa9, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aa9, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aa9, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000 (apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000
snip
David Kredba schrieb:
There is debug output.
It is truncated at the end. It is growing by many lines of this type (one about 750 ms) :
apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aaa, KPCR = ff001000
occasionaly followed by this line :
(apic.c:834) MpsTimerHandler on CPU1, irql = 0, epi = c00b4aa9, KPCR = ff001000.
Should I send You full output ? It is still growing.
Thanks, David
Hi David,
you have enabled the kernel debugger (KDBG). The current implementation of the kernel debuger doesn't work correctly on smp machines. You should disable it. There is a difference between the current debug output and the last one. Now the ipi functions are executed. The debug output within the ipi functions makes some delays. It seems that this delays fix a problem. I've found that some variables are set without the 'lock' prefix. I've implemented Ke386TestAndClearBit/Ke386TestAndSetBit. Possible it does fix the problem. Can you please attach my patch and try it again?
- Hartmut
E:\Sandbox\ros_mp\reactos>set CVS_RSH=SSH2
E:\Sandbox\ros_mp\reactos>d:\programme\cvsnt\cvs.exe -z6 -d :ext:hbirr@osexperts.com:/CVS/ReactOS diff -u ntoskrnl\include\internal\ke.h ntoskrnl\include\internal\i386\ke.h ntoskrnl\ke\ipi.c Index: ntoskrnl/include/internal/ke.h =================================================================== RCS file: /CVS/ReactOS/reactos/ntoskrnl/include/internal/ke.h,v retrieving revision 1.68 diff -u -r1.68 ke.h --- ntoskrnl/include/internal/ke.h 28 Nov 2004 12:58:32 -0000 1.68 +++ ntoskrnl/include/internal/ke.h 19 Dec 2004 17:04:06 -0000 @@ -43,9 +43,9 @@ struct _KPCR; struct _KEXCEPTION_FRAME;
-#define IPI_REQUEST_FUNCTIONCALL 1 -#define IPI_REQUEST_APC 2 -#define IPI_REQUEST_DPC 4 +#define IPI_REQUEST_FUNCTIONCALL 0 +#define IPI_REQUEST_APC 1 +#define IPI_REQUEST_DPC 2
/* ipi.c ********************************************************************/
Index: ntoskrnl/include/internal/i386/ke.h =================================================================== RCS file: /CVS/ReactOS/reactos/ntoskrnl/include/internal/i386/ke.h,v retrieving revision 1.16 diff -u -r1.16 ke.h --- ntoskrnl/include/internal/i386/ke.h 20 Nov 2004 23:46:36 -0000 1.16 +++ ntoskrnl/include/internal/i386/ke.h 19 Dec 2004 17:04:06 -0000 @@ -219,6 +219,31 @@ #define Ke386GetCr4() _Ke386GetCr(4) #define Ke386SetCr4(X) _Ke386SetCr(4,X)
+static inline LONG Ke386TestAndClearBit(ULONG BitPos, volatile PULONG Addr) +{ + LONG OldBit; + + __asm__ __volatile__("lock btrl %2,%1\n\t" + "sbbl %0,%0\n\t" + :"=r" (OldBit),"=m" (*Addr) + :"Ir" (BitPos) + : "memory"); + return OldBit; +} + +static inline LONG Ke386TestAndSetBit(ULONG BitPos, volatile PULONG Addr) +{ + LONG OldBit; + + __asm__ __volatile__("lock btsl %2,%1\n\t" + "sbbl %0,%0\n\t" + :"=r" (OldBit),"=m" (*Addr) + :"Ir" (BitPos) + : "memory"); + return OldBit; +} + + static inline void Ki386Cpuid(ULONG Op, PULONG Eax, PULONG Ebx, PULONG Ecx, PULONG Edx) { __asm__("cpuid" Index: ntoskrnl/ke/ipi.c =================================================================== RCS file: /CVS/ReactOS/reactos/ntoskrnl/ke/ipi.c,v retrieving revision 1.4 diff -u -r1.4 ipi.c --- ntoskrnl/ke/ipi.c 27 Nov 2004 16:32:10 -0000 1.4 +++ ntoskrnl/ke/ipi.c 19 Dec 2004 17:04:06 -0000 @@ -33,7 +33,7 @@ if (TargetSet & (1 << i)) { Pcr = (PKPCR)(KPCR_BASE + i * PAGE_SIZE); - Pcr->PrcbData.IpiFrozen |= IpiRequest; + Ke386TestAndSetBit(IpiRequest, &Pcr->PrcbData.IpiFrozen); HalRequestIpi(i); } } @@ -51,30 +51,26 @@ LARGE_INTEGER StartTime, CurrentTime, Frequency; ULONG Count = 5; #endif - ULONG TargetSet, Processor; - PKPCR Pcr;
ASSERT(KeGetCurrentIrql() == IPI_LEVEL);
- DPRINT("KiIpiServiceRoutine\n"); +// DbgPrint("(%s:%d) CPU%d, KiIpiServiceRoutine\n", __FILE__, __LINE__, KeGetCurrentProcessorNumber());
Pcr = KeGetCurrentKPCR();
- if (Pcr->PrcbData.IpiFrozen & IPI_REQUEST_APC) + if (Ke386TestAndClearBit(IPI_REQUEST_APC, &Pcr->PrcbData.IpiFrozen)) { - Pcr->PrcbData.IpiFrozen &= ~IPI_REQUEST_APC; HalRequestSoftwareInterrupt(APC_LEVEL); }
- if (Pcr->PrcbData.IpiFrozen & IPI_REQUEST_DPC) + if (Ke386TestAndClearBit(IPI_REQUEST_DPC, &Pcr->PrcbData.IpiFrozen)) { - Pcr->PrcbData.IpiFrozen &= ~IPI_REQUEST_DPC; Pcr->PrcbData.DpcInterruptRequested = TRUE; HalRequestSoftwareInterrupt(DISPATCH_LEVEL); }
- if (Pcr->PrcbData.IpiFrozen & IPI_REQUEST_FUNCTIONCALL) + if (Ke386TestAndClearBit(IPI_REQUEST_FUNCTIONCALL, &Pcr->PrcbData.IpiFrozen)) { InterlockedDecrement((PLONG)&Pcr->PrcbData.SignalDone->CurrentPacket[1]); if (Pcr->PrcbData.SignalDone->CurrentPacket[2]) @@ -88,18 +84,16 @@ CurrentTime = KeQueryPerformanceCounter(NULL); if (CurrentTime.QuadPart > StartTime.QuadPart + Count * Frequency.QuadPart) { - DPRINT1("Waiting longer than %d seconds to start the ipi routine\n", Count); + DbgPrint("(%s:%d) CPU%d, waiting longer than %d seconds to start the ipi routine\n", __FILE__,__LINE__, KeGetCurrentProcessorNumber(), Count); KEBUGCHECK(0); } #endif } } +// DbgPrint("(%s:%d) CPU%d, before executing the worker routine\n", __FILE__,__LINE__, KeGetCurrentProcessorNumber()); ((VOID STDCALL(*)(PVOID))(Pcr->PrcbData.SignalDone->WorkerRoutine))(Pcr->PrcbData.SignalDone->CurrentPacket[0]); - do - { - Processor = 1 << KeGetCurrentProcessorNumber(); - TargetSet = Pcr->PrcbData.SignalDone->TargetSet; - } while (Processor & InterlockedCompareExchange(&Pcr->PrcbData.SignalDone->TargetSet, TargetSet & ~Processor, TargetSet)); +// DbgPrint("(%s:%d) CPU%d, after executing the worker routine\n", __FILE__,__LINE__, KeGetCurrentProcessorNumber()); + Ke386TestAndClearBit(KeGetCurrentProcessorNumber(), &Pcr->PrcbData.SignalDone->TargetSet); if (Pcr->PrcbData.SignalDone->CurrentPacket[2]) { #ifdef DBG @@ -111,16 +105,15 @@ CurrentTime = KeQueryPerformanceCounter(NULL); if (CurrentTime.QuadPart > StartTime.QuadPart + Count * Frequency.QuadPart) { - DPRINT1("Waiting longer than %d seconds after executing the ipi routine\n", Count); + DbgPrint("(%s:%d) CPU%d, waiting longer than %d seconds after executing the ipi routine\n", __FILE__,__LINE__, KeGetCurrentProcessorNumber(), Count); KEBUGCHECK(0); } #endif } } InterlockedExchangePointer(&Pcr->PrcbData.SignalDone, NULL); - Pcr->PrcbData.IpiFrozen &= ~IPI_REQUEST_FUNCTIONCALL; } - DPRINT("KiIpiServiceRoutine done\n"); +// DbgPrint("(%s:%d) CPU%d, KiIpiServiceRoutine done\n", __FILE__, __LINE__, KeGetCurrentProcessorNumber()); return TRUE; }
@@ -136,11 +129,11 @@ ASSERT(KeGetCurrentIrql() == SYNCH_LEVEL);
CurrentPcr = KeGetCurrentKPCR(); - CurrentPcr->PrcbData.TargetSet = TargetSet; - CurrentPcr->PrcbData.WorkerRoutine = (ULONG_PTR)WorkerRoutine; - CurrentPcr->PrcbData.CurrentPacket[0] = Argument; - CurrentPcr->PrcbData.CurrentPacket[1] = (PVOID)Count; - CurrentPcr->PrcbData.CurrentPacket[2] = (PVOID)(ULONG)Synchronize; + InterlockedExchange(&CurrentPcr->PrcbData.TargetSet, TargetSet); + InterlockedExchange(&CurrentPcr->PrcbData.WorkerRoutine, (ULONG_PTR)WorkerRoutine); + InterlockedExchangePointer(&CurrentPcr->PrcbData.CurrentPacket[0], Argument); + InterlockedExchangePointer(&CurrentPcr->PrcbData.CurrentPacket[1], (PVOID)Count); + InterlockedExchangePointer(&CurrentPcr->PrcbData.CurrentPacket[2], (PVOID)(ULONG)Synchronize);
CurrentProcessor = 1 << KeGetCurrentProcessorNumber();
@@ -150,7 +143,7 @@ { Pcr = (PKPCR)(KPCR_BASE + i * PAGE_SIZE); while(0 != InterlockedCompareExchange((PLONG)&Pcr->PrcbData.SignalDone, (LONG)&CurrentPcr->PrcbData, 0)); - Pcr->PrcbData.IpiFrozen |= IPI_REQUEST_FUNCTIONCALL; + Ke386TestAndSetBit(IPI_REQUEST_FUNCTIONCALL, &Pcr->PrcbData.IpiFrozen); if (Processor != CurrentProcessor) { HalRequestIpi(i); @@ -171,7 +164,7 @@ KIRQL oldIrql; ULONG TargetSet;
- DPRINT("KeIpiGenericCall on CPU%d\n", KeGetCurrentProcessorNumber()); +// DbgPrint("(%s:%d) KeIpiGenericCall on CPU%d\n", __FILE__, __LINE__, KeGetCurrentProcessorNumber());
KeRaiseIrql(SYNCH_LEVEL, &oldIrql);
@@ -185,7 +178,7 @@
KeLowerIrql(oldIrql);
- DPRINT("KeIpiGenericCall on CPU%d done\n", KeGetCurrentProcessorNumber()); +// DbgPrint("(%s:%d) KeIpiGenericCall on CPU%d done\n", __FILE__, __LINE__, KeGetCurrentProcessorNumber()); }
Hello Hartmut,
I applied your patch to fresh cvs tree and did if 0 -> if 1 changes in apic.c and disable KDBG.
I got this :
Found MPF signature at f5c70, checksum 0 Intel MultiProcessor Specification v1.4 compliant system. apic.c:458 (apic.c:461) Getting VERSION: 40011 (apic.c:464) Getting VERSION: 40011 (apic.c:495) Getting ID: 0 (apic.c:498) Getting ID: f000000 (apic.c:580) CPU0: (apic.c:581) Physical APIC id: 0 (apic.c:582) Logical APIC id: 0 (apic.c:583) 00000000 00000000 ffffffff (apic.c:610) CPU0: (apic.c:611) Physical APIC id: 0 (apic.c:612) Logical APIC id: 1 (apic.c:613) 00000000 01000000 ffffffff (apic.c:614) 0 (apic.c:645) enabled ExtINT on CPU#0 Used memory 524224Kb (processor_mp.c:1077) Attempting to boot CPU 1 (apic.c:580) CPU1: (apic.c:581) Physical APIC id: 1 (apic.c:582) Logical APIC id: 0 (apic.c:583) 01000000 00000000 ffffffff (apic.c:610) CPU1: (apic.c:611) Physical APIC id: 1 (apic.c:612) Logical APIC id: 2 (apic.c:613) 01000000 02000000 ffffffff (apic.c:614) 1 (apic.c:650) masked ExtINT on CPU#1 CPU 1 is now running (ke/ipi.c:108) CPU1, waiting longer than 5 seconds after executing the ipi route KeBugCheck at ke/ipi.c:109 Bug detected (code 0 param 0 0 0 0) The bug code is undefined. Please use an existing code instead.
Frames: <ntoskrnl.exe: beaa> <ntoskrnl.exe: beca> <ntoskrnl.exe: e30b> <hal.dll
You are right, the previous debug output were different, device drivers were loaded etc.
Thanks, David
David Kredba schrieb:
Hello Hartmut,
I applied your patch to fresh cvs tree and did if 0 -> if 1 changes in apic.c and disable KDBG.
I got this :
You are right, the previous debug output were different, device drivers were loaded etc.
Thanks, David
Hi,
I've no idea, why the smp build works a little bit with the debug messages and not without it. Can this be a problem of the caches of both cpus? Withe my last changes (and same more changes on the scheduler), I'm able to build ros on ros with the smp build. Without this changes, the compiling has hung after some time.
- Hartmut
Can I do anything more with my dual PIII machine to try to get it running ?
I`ll try to boot smp build on a newer computer vith HT technology.
Thanks, David