Skip to content
shentino edited this page Jul 22, 2013 · 11 revisions

Table of Contents

Structural Hierarchy

  • Volume
    • Physical structures
      • Log chain (linked list)
      • itree (b+tree)
        • inode (indexed by inum)
          • dtree (b+tree)
            • extent (indexed by offset)
      • otree (b+tree)
        • inum
    • Virtual structures
      • inum allocation bitmap (sparse file)
      • block allocation bitmap (sparse file)

Component breakdown

volume

Log chain, itree, otree

log chain

Chain of log blocks

itree

b+tree of inodes indexed by inum

inode

inode information, dtree

dtree

b+tree of data extents indexed by logical offset

otree

b+tree of orphan inodes, indexed by inum

inum bitmap

sparse file containing bitmap of inum allocation

block bitmap

sparse file containing bitmap of block allocation

Clone this wiki locally