MCPcopy Create free account
hub / github.com/bobranten/Ext4Fsd / Ext2FreeIrpContext

Function Ext2FreeIrpContext

Ext4Fsd/memory.c:113–127  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

111}
112
113VOID
114Ext2FreeIrpContext (IN PEXT2_IRP_CONTEXT IrpContext)
115{
116 ASSERT(IrpContext != NULL);
117
118 ASSERT((IrpContext->Identifier.Type == EXT2ICX) &&
119 (IrpContext->Identifier.Size == sizeof(EXT2_IRP_CONTEXT)));
120
121 /* free the IrpContext to NonPagedList */
122 IrpContext->Identifier.Type = 0;
123 IrpContext->Identifier.Size = 0;
124
125 DEC_IRP_COUNT(IrpContext);
126 ExFreeToNPagedLookasideList(&(Ext2Global->Ext2IrpContextLookasideList), IrpContext);
127}
128
129
130PEXT2_FCB

Callers 7

Ext2ExceptionFilterFunction · 0.85
Ext2ExceptionHandlerFunction · 0.85
Ext2WriteVolumeFunction · 0.85
Ext2WriteFileFunction · 0.85
Ext2CompleteIrpContextFunction · 0.85
Ext2ReadVolumeFunction · 0.85
Ext2ReadFileFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected