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

Function Ext2DestroyExtentChain

Ext4Fsd/memory.c:543–553  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

541
542
543VOID
544Ext2DestroyExtentChain(IN PEXT2_EXTENT Chain)
545{
546 PEXT2_EXTENT Extent = NULL, List = Chain;
547
548 while (List) {
549 Extent = List->Next;
550 Ext2FreeExtent(List);
551 List = Extent;
552 }
553}
554
555BOOLEAN
556Ext2ListExtents(PLARGE_MCB Extents)

Callers 5

Ext2QueryExtentMappingsFunction · 0.85
Ext2GetRetrievalPointersFunction · 0.85
Ext2WriteVolumeFunction · 0.85
Ext2WriteInodeFunction · 0.85
Ext2ReadInodeFunction · 0.85

Calls 1

Ext2FreeExtentFunction · 0.85

Tested by

no test coverage detected