| 219 | } |
| 220 | |
| 221 | VOID |
| 222 | Ext2DeQueueCloseRequest (IN PVOID Context) |
| 223 | { |
| 224 | PEXT2_IRP_CONTEXT IrpContext; |
| 225 | |
| 226 | IrpContext = (PEXT2_IRP_CONTEXT) Context; |
| 227 | ASSERT(IrpContext); |
| 228 | ASSERT((IrpContext->Identifier.Type == EXT2ICX) && |
| 229 | (IrpContext->Identifier.Size == sizeof(EXT2_IRP_CONTEXT))); |
| 230 | |
| 231 | __try { |
| 232 | |
| 233 | __try { |
| 234 | |
| 235 | FsRtlEnterFileSystem(); |
| 236 | Ext2Close(IrpContext); |
| 237 | |
| 238 | } __except (Ext2ExceptionFilter(IrpContext, GetExceptionInformation())) { |
| 239 | |
| 240 | Ext2ExceptionHandler(IrpContext); |
| 241 | } |
| 242 | |
| 243 | } __finally { |
| 244 | |
| 245 | FsRtlExitFileSystem(); |
| 246 | } |
| 247 | } |
nothing calls this directly
no test coverage detected