Pending Device IOCTL request

Hi All,

I am developing a file system filter driver, and there will be an
application which communicates to the filter driver Device object, not the
actual filtering device object, when I send an IOCTL from the application I
am receiving it as the fastiodevicecontrol() so is it possible to pend it
like normal IRP.

Is it not possible to force I/O manager to send IOCTL as normal IRPs.

Any information is helpful.

Thanks,
Kedar.

Return FALSE from FastIoDeviceControl to make I/O Manager send an
IRP_MJ_DEVICE_CONTROL IRP to your device.

–htfv

“Kedar” wrote in message news:xxxxx@ntfsd…
> Hi All,
>
> I am developing a file system filter driver, and there will be an
> application which communicates to the filter driver Device object, not the
> actual filtering device object, when I send an IOCTL from the application
> I
> am receiving it as the fastiodevicecontrol() so is it possible to pend it
> like normal IRP.
>
> Is it not possible to force I/O manager to send IOCTL as normal IRPs.
>
> Any information is helpful.
>
> Thanks,
> Kedar.
>
>
>

If you return false from your fast io routine, the I/O mgr will issue the
request via the Irp dispatch function.

Pete

Peter Scott
xxxxx@KernelDrivers.com
www.KernelDrivers.com

-----Original Message-----
From: xxxxx@lists.osr.com [mailto:bounce-175685-
xxxxx@lists.osr.com] On Behalf Of Kedar
Sent: Saturday, May 15, 2004 2:08 AM
To: Windows File Systems Devs Interest List
Subject: [ntfsd] Pending Device IOCTL request

Hi All,

I am developing a file system filter driver, and there will be an
application which communicates to the filter driver Device object, not the
actual filtering device object, when I send an IOCTL from the application
I
am receiving it as the fastiodevicecontrol() so is it possible to pend it
like normal IRP.

Is it not possible to force I/O manager to send IOCTL as normal IRPs.

Any information is helpful.

Thanks,
Kedar.


Questions? First check the IFS FAQ at
https://www.osronline.com/article.cfm?id=17

You are currently subscribed to ntfsd as: xxxxx@kerneldrivers.com
To unsubscribe send a blank email to xxxxx@lists.osr.com

thanks.

Kedar.