ListEntry in DeviceObject

Hi, all

does anyone know if the DeviceObject->Queue.ListEntry
is used by the system (and if yes, then for what purpose ?)
or it is free to use in my private lists ?
Or should I use my own ListEntry list in device extension ?

L.

It is used by the system, use your own in a device extension. If it isn’t
documented in the DDK’s page on DEVICE_OBJECT’s don’t use it.


Don Burn (MVP, Windows DDK)
Windows 2k/XP/2k3 Filesystem and Driver Consulting
Remove StopSpam from the email to reply

“Ladislav Zezula” wrote in message news:xxxxx@ntfsd…
> Hi, all
>
> does anyone know if the DeviceObject->Queue.ListEntry
> is used by the system (and if yes, then for what purpose ?)
> or it is free to use in my private lists ?
> Or should I use my own ListEntry list in device extension ?
>
> L.
>
>
>

For IoStartPacket I think.

Maxim Shatskih, Windows DDK MVP
StorageCraft Corporation
xxxxx@storagecraft.com
http://www.storagecraft.com

----- Original Message -----
From: “Ladislav Zezula”
To: “Windows File Systems Devs Interest List”
Sent: Monday, September 27, 2004 4:39 PM
Subject: [ntfsd] ListEntry in DeviceObject

> Hi, all
>
> does anyone know if the DeviceObject->Queue.ListEntry
> is used by the system (and if yes, then for what purpose ?)
> or it is free to use in my private lists ?
> Or should I use my own ListEntry list in device extension ?
>
> L.
>
>
>
> —
> Questions? First check the IFS FAQ at
https://www.osronline.com/article.cfm?id=17
>
> You are currently subscribed to ntfsd as: xxxxx@storagecraft.com
> To unsubscribe send a blank email to xxxxx@lists.osr.com

Ladislav,

Don is right. This Queue.ListEntry is to be used internally by the system
and please do not make use it. Currently it is used to link all the
registered file system but that can change anytime. Use a ListEntry in the
device extension instead.

Thanks
Ravinder Thind

This posting is provided "AS IS" with no warranties, and confers no rights.

"Don Burn" wrote in message news:xxxxx@ntfsd...
> It is used by the system, use your own in a device extension. If it isn't
> documented in the DDK's page on DEVICE_OBJECT's don't use it.
>
>
> --
> Don Burn (MVP, Windows DDK)
> Windows 2k/XP/2k3 Filesystem and Driver Consulting
> Remove StopSpam from the email to reply
>
> "Ladislav Zezula" wrote in message news:xxxxx@ntfsd...
>> Hi, all
>>
>> does anyone know if the DeviceObject->Queue.ListEntry
>> is used by the system (and if yes, then for what purpose ?)
>> or it is free to use in my private lists ?
>> Or should I use my own ListEntry list in device extension ?
>>
>> L.
>>
>>
>>
>
>
>

Don, Max, Ravinder,

thank you for the information.

L.