If the Pdo is paused, the notifier dpc will not
unmask the event channel. When the Pdo is unpaused, the
event channel remains masked, so no more interrupts
get delivered.
Signed-off-by: Owen Smith <owen.smith@citrix.com>
)
{
PXENVBD_NOTIFIER Notifier = Context;
- PXENVBD_PDO Pdo;
UNREFERENCED_PARAMETER(Dpc);
UNREFERENCED_PARAMETER(Arg1);
UNREFERENCED_PARAMETER(Arg2);
ASSERT(Notifier != NULL);
- Pdo = FrontendGetPdo(Notifier->Frontend);
-
- if (PdoIsPaused(Pdo)) {
- Warning("Target[%d] : Paused, %d outstanding\n",
- PdoGetTargetId(Pdo), PdoOutstandingReqs(Pdo));
- if (PdoOutstandingReqs(Pdo) == 0)
- return;
- }
if (!Notifier->Connected)
return;