EvtDevicePrepareHardware IRQL level

Hi there,

At what IRQL level does EvtDevicePrepareHardware is called. I read that D0Entry event is always called at PASSIVE_LEVEL. Is the same true for PrepareHardware too?

Thanks
Suhail

> Hi there,

At what IRQL level does EvtDevicePrepareHardware is called. I read
that
D0Entry event is always called at PASSIVE_LEVEL. Is the same true for
PrepareHardware too?

In the 18000.6002 docs for EvtDevicePrepareHardware it is pretty clearly
spelled out - “IRQL: PASSIVE_LEVEL”.

Ditto for the online docs -
http://msdn.microsoft.com/en-us/library/aa491092.aspx

James

Read the docs luke, http://msdn.microsoft.com/en-us/library/aa491092.aspx

All pnp and power related Evt callbacks are invoked at PASSIVE_LEVEL with the exception of EvtInterruptEnable/Disable which is invoked at DIRQL (to synchronize with the ISR)

d

-----Original Message-----
From: xxxxx@lists.osr.com [mailto:xxxxx@lists.osr.com] On Behalf Of xxxxx@hotmail.com
Sent: Thursday, February 05, 2009 3:55 PM
To: Windows System Software Devs Interest List
Subject: [ntdev] EvtDevicePrepareHardware IRQL level

Hi there,

At what IRQL level does EvtDevicePrepareHardware is called. I read that D0Entry event is always called at PASSIVE_LEVEL. Is the same true for PrepareHardware too?

Thanks
Suhail


NTDEV is sponsored by OSR

For our schedule of WDF, WDM, debugging and other seminars visit:
http://www.osr.com/seminars

To unsubscribe, visit the List Server section of OSR Online at http://www.osronline.com/page.cfm?name=ListServer

Thanks folks. I forgot to read the Requirements part of the docs. Sorry for the mistake.