| 111 | } |
| 112 | |
| 113 | VOID |
| 114 | Ext2FreeIrpContext (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 | |
| 130 | PEXT2_FCB |
no outgoing calls
no test coverage detected