Windows debug primitives will IPI so it's not a good idea to use them
from within an interrupt handler which may get called at HIGH_LEVEL.
Signed-off-by: Paul Durrant <paul.durrant@citrix.com>
KeGetCurrentProcessorNumberEx(&ProcNumber);
ProcIndex = KeGetProcessorIndexFromNumber(&ProcNumber);
- if (!KeInsertQueueDpc(&Context->Dpc, NULL, NULL)) {
- XenIfaceDebugPrint(TRACE, "NOT INSERTED: Context %p, Port %lu, FO %p, Cpu %lu\n",
- Context, Context->LocalPort, Context->FileObject, ProcIndex);
- }
+ (VOID) KeInsertQueueDpc(&Context->Dpc, NULL, NULL);
return TRUE;
}