From: uba on
>   The first queue should be serial,
> otherwise you will not know the ordering of the requests.

Which dispatch type the queue need to be for serial.

Thanks
kid
From: Don Burn on
WdfIoQueueDispatchSequential


--
Don Burn (MVP, Windows DKD)
Windows Filesystem and Driver Consulting
Website: http://www.windrvr.com
Blog: http://msmvps.com/blogs/WinDrvr
Remove StopSpam to reply



"uba" <kid07.uba(a)gmail.com> wrote in message
news:e82d0c3d-f914-4555-ac2f-e372cfe1a052(a)g8g2000pri.googlegroups.com...
> The first queue should be serial,
> otherwise you will not know the ordering of the requests.

Which dispatch type the queue need to be for serial.

Thanks
kid

__________ Information from ESET NOD32 Antivirus, version of virus signature
database 4831 (20100203) __________

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com





__________ Information from ESET NOD32 Antivirus, version of virus signature database 4831 (20100203) __________

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com




From: uba on
> WdfIoQueueDispatchSequential

If i use WdfIoQueueDispatchSequential then framework would deliver the
next request until I complete the first one. Is this the correct one
to use in this scenario.

Regards,
kid
From: Don Burn on
The framework will also deliver if the request is handed off to another
queue. That is your model. From the questions you are asking seriously
consider taking a course on Windows drivers.


--
Don Burn (MVP, Windows DKD)
Windows Filesystem and Driver Consulting
Website: http://www.windrvr.com
Blog: http://msmvps.com/blogs/WinDrvr
Remove StopSpam to reply



"uba" <kid07.uba(a)gmail.com> wrote in message
news:6b468a4d-0df5-44dd-b4b0-6ed86e33533e(a)q2g2000pre.googlegroups.com...
>> WdfIoQueueDispatchSequential
>
> If i use WdfIoQueueDispatchSequential then framework would deliver the
> next request until I complete the first one. Is this the correct one
> to use in this scenario.
>
> Regards,
> kid
>
> __________ Information from ESET NOD32 Antivirus, version of virus
> signature database 4831 (20100203) __________
>
> The message was checked by ESET NOD32 Antivirus.
>
> http://www.eset.com
>
>
>



__________ Information from ESET NOD32 Antivirus, version of virus signature database 4831 (20100203) __________

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com




From: uba on
> The framework will also deliver if the request is handed off to another
> queue.  That is your model.  

Thank you for the info. I did not find this info in the WDK
documentation.

> From the questions you are asking seriously
> consider taking a course on Windows drivers.
>

I'm quite new to windows driver. So, pardon me if the question sounds
insane.

Regards,
kid