!ndiskd.nblpool
A extensão !ndiskd.nblpool exibe informações sobre um pool da NET_BUFFER_LIST (NBL). Se você executar essa extensão sem parâmetros, o !ndiskd exibirá uma lista com todos os pools da NBL alocados no sistema.
!ndiskd.nblpool [-handle <x>] [-basic] [-allocations] [-find <str>] [-findnb <str>]
[-findctx <str>] [-findctxtype <str>] [-findva <x>] [-findpa <x>]
Parâmetros
-manejar
Identificador de um pool da NBL.
-básico
Exibe informações básicas sobre o pool da NBL.
-Alocações
Exibe todas as NBLs alocadas.
-encontrar
Filtrar a lista de NBLs alocadas usando uma expressão do depurador.
-findnb
Filtrar a lista de NBLs alocadas por NET_BUFFERvinculadas (NBs).
-findctx
Filtrar a lista de NBLs alocadas por área de contexto.
-findctxtype
Substituir o tipo de dados da área de contexto.
-findva
Encontrar NBLs que contenham uma NB que abrange o endereço virtual fornecido.
-findpa
Encontrar NBLs que contenham uma NB que abrange o endereço físico fornecido.
DLL
Ndiskd.dll
Exemplos
Insira o comando !ndiskd.nblpool sem parâmetros para ver uma lista com todos os pools da NBL alocados. Neste exemplo, procure o pool da NBL alocado pela placa de adaptador de rede do depurador de kernel (kdnic) com a marcação KDNr. Seu identificador é ffffdf80147e4a40.
2: kd> !ndiskd.nblpool
NBL Pool Tag Allocated by
ffffdf80179b6a40 NiBP WdNisDrv!CWFPLayer::Initialize+c6
ffffdf8015ac6a40 EUNP tunnel!TunnelEtherUdpGlobalInit+81
ffffdf8015a78040 Nuio ndisuio!ndisuioCreateBinding+15f
ffffdf8015a77800 Nuio ndisuio!ndisuioCreateBinding+13c
ffffdf8015a63040 BaNB rspndr!TopStartNetBufferModule+6d
ffffdf8015a68a40 LLnb mslldp!lldpProtSetOptions+49
ffffdf8014654040 BaNB lltdio!TopStartNetBufferModule+6d
ffffdf801494ca40 Pcsb pacer!PcFilterAttach+142
ffffdf80147e4a40 KDNr kdnic!NICAllocAdapter+178
ffffdf80131ce040 bnvW wfplwfs!DriverEntry+7a0
ffffdf80139ffa40 Wfdp wfplwfs!WfpRioInitialize+a4
ffffdf8012061200 UNbl NETIO!NetioAllocateNetBufferListNetBufferMdlAndDataPool+49
ffffdf8013968a40 TcDN NETIO!NetioAllocateNetBufferListNetBufferMdlAndDataPool+49
ffffdf8013969a40 TNbl NETIO!NetioAllocateNetBufferListNetBufferMdlAndDataPool+49
ffffdf801397c040 StBn NETIO!StreamPoolsInit+c1
ffffdf8013088040 Wfra NETIO!WfpNblInfoLibraryInit+b8
ffffdf8012067440 Nnnn NETIO!NetioInitializeNetBufferListLibrary+13e
ffffdf8012067a40 Nnbl NETIO!NetioInitializeNetBufferListLibrary+112
ffffdf80131caa40 NDrt ndis!ndisInitializePeriodicReceives+22f
ffffdf80131d5a40 NDnd ndis!DriverEntry+5e9
Clique no identificador do pool da NBL ou digite o comando !ndiskd.nblpool -handle para verificar seus detalhes.
2: kd> !ndiskd.nblpool ffffdf80147e4a40
NBL POOL
Ndis handle ffffdf80147e4a40
Allocation tag KDNr
Owner
Allocated by kdnic!NICAllocAdapter+178
Flags CONTAINS_NET_BUFFER
Structure size 0n544
Context size 0
Data size 0
All allocated NBLs
Para explorar as NBLs contidas neste pool da NBL, clique no link "Todas as NBLs alocadas" na parte inferior. Como alternativa, você também pode inserir o comando !ndiskd.nblpool -handle -allocations. Como mostrado no exemplo a seguir, esse pool da NBL contém mais de 1024 NBLs, portanto, o !ndiskd vai encerrar mais cedo. Você pode usar a opção -force para contornar esse limite e ver todas as NBLs neste pool da NBL.
2: kd> !ndiskd.nblpool ffffdf80147e4a40 -allocations
ALL ALLOCATED NBLs
NBL Active?
ffffdf8014951940 Allocated
ffffdf8014951b90 Allocated
ffffdf8014951de0 Allocated
ffffdf8014951030 Allocated
ffffdf80149524a0 Allocated
ffffdf80149526f0 Allocated
ffffdf8014952940 Allocated
ffffdf8014952b90 Allocated
ffffdf8014952de0 Allocated
ffffdf8014952030 Allocated
ffffdf80149534a0 Allocated
ffffdf80149536f0 Allocated
ffffdf8014953940 Allocated
ffffdf8014953b90 Allocated
ffffdf8014953de0 Allocated
ffffdf8014953030 Allocated
ffffdf80149544a0 Allocated
ffffdf80149546f0 Allocated
ffffdf8014954940 Allocated
...
ffffdf80148b0b90 Allocated
ffffdf80148b0de0 Allocated
ffffdf80148b0030 Allocated
ffffdf80148b14a0 Allocated
ffffdf80148b16f0 Allocated
ffffdf80148b1940 Allocated
ffffdf80148b1b90 Allocated
ffffdf80148b1de0 Allocated
ffffdf80148b1030 Allocated
[Maximum of 1024 items read; quitting early. Rerun with the '-force' option
to bypass this limit.]
Confira também
Guia de design para driver de rede