Tagged Questions
1
vote
1answer
36 views
When does Windows cancel an in-flight WDF request?
I am writing a Windows device driver using WDF (KMDF) for a USB3 device that transfers data in large chunks at a time. I've written a user-level application that tests this functionality, and for the ...
0
votes
1answer
102 views
WDF Coinstaller issue
I'm having problem installing my KMDF 1.9 driver on a 32-bit Vista machine running KMDF 1.5. I was hoping the coinstaller should update the Vista machine to KMDF 1.9. But it does not.
What have I ...
7
votes
1answer
101 views
Is it possible to retrieve the CPU that created a WDFREQUEST?
I am trying to affinitise the completion of CompleteRequest to the CPU that originally issued the request. Is there a way to retrieve the CPU that issued the request during FdoDeviceControl or any ...
0
votes
1answer
111 views
UMDF- lock device in application level
I'm writing a simple USB driver for our device using UMDF over WinUsb. The driver can be used by multiple application concurrently.
I need to achieve a custom locking system that the ...