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

Function Ext2CountExtents

Ext4Fsd/memory.c:512–524  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

510}
511
512ULONG
513Ext2CountExtents(IN PEXT2_EXTENT Chain)
514{
515 ULONG count = 0;
516 PEXT2_EXTENT List = Chain;
517
518 while (List) {
519 count += 1;
520 List = List->Next;
521 }
522
523 return count;
524}
525
526VOID
527Ext2JointExtents(

Callers 1

Ext2QueryExtentMappingsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected