Windows System Software -- Consulting, Training, Development -- Unique Expertise, Guaranteed Results
The free OSR Learning Library has more than 50 articles on a wide variety of topics about writing and debugging device drivers and Minifilters. From introductory level to advanced. All the articles have been recently reviewed and updated, and are written using the clear and definitive style you've come to expect from OSR over the years.
Check out The OSR Learning Library at: https://www.osr.com/osr-learning-library/
I am writing a filter driver where I have implemented all possible IRPs like IRP_MJ_CREATE IRP_MJ_READ etc. I started implementing fast io routines also in this driver. I am required to fetch the details of disk offset where the writes are targeted to. With irps, I could get the details from irp parameter in the routines. But when implementing fastio , I am stuck at finding the disk offset. Any reads or pointers in this directions would be helpful.
Upcoming OSR Seminars | ||
---|---|---|
OSR has suspended in-person seminars due to the Covid-19 outbreak. But, don't miss your training! Attend via the internet instead! | ||
Internals & Software Drivers | 19-23 June 2023 | Live, Online |
Writing WDF Drivers | 10-14 July 2023 | Live, Online |
Kernel Debugging | 16-20 October 2023 | Live, Online |
Developing Minifilters | 13-17 November 2023 | Live, Online |
Comments
Sorry, I'm confused...
Are you writing a file system filter, a disk filter, or a volume filter? The file system uses Fast I/O for reads/writes and the file offset is a parameter. There's no concept of fast I/O read/write at the disk or volume levels.
-scott
OSR
Right! I am writing a volume filter driver and was thinking fast I/O concepts come in volume level too. Now its clear to me. Thanks for the lead.