Displaying 1 result from an estimated 1 matches for "8088e588".
Did you mean:
8088e582
2008 Nov 22
5
Infinte loop in RtlPrefetchMemoryNonTemporal under Windows
...ws
makes a call to a routine called RtlPrefetchMemoryNonTemporal, which
looks like this:
8088e579 mov eax,dword ptr [nt!KePrefetchNTAGranularity 8088e57e
0f184100 prefetchnta [ecx]
8088e582 add ecx,eax
8088e584 sub edx,eax
8088e586 ja nt!RtlPrefetchMemoryNonTemporal+0x6 (8088e57e)
8088e588 ret
Unfortunately it appears that the value at nt!KePrefetchNTAGranularity
is 0, hence the infinite loop.
Is there anything in Xen that could cause Windows to put a zero in
there? The other (more likely?) alternative is that I''m doing something
wrong in my driver that is causing that val...