BOOLEAN
HwScsiDisableInterruptsCallback(
IN PVOID DeviceExtension
);
HwScsiDisableInterruptsCallback is called after a miniport’s HwScsiEnableInterruptsCallback routine calls ScsiPortNotification with the NotificationType CallDisableInterrupts. Miniport drivers of HBAs that require interrupt processing that takes more than 50 microseconds in the ISR should have a pair of HwScsi..InterruptsCallback routines.
HwScsiDisableInterruptsCallback returns TRUE, indicating it re-enabled interrupts on the HBA.
All system interrupts with a higher hardware priority than the HBA’s are enabled when the HwScsiDisableInterruptsCallback routine is called. Consequently, a HwScsiDisableInterruptsCallback routine should be optimized to run as quickly as possible.
HwScsiDisableInterruptsCallback is responsible for re-enabling interrupts on the HBA and then returning control.
HwScsiEnableInterruptsCallback, HwScsiInterrupt, ScsiPortNotification