Differences between revisions 1 and 6 (spanning 5 versions)
Revision 1 as of 2004-03-31 19:39:43
Size: 624
Editor: yakko
Comment:
Revision 6 as of 2004-03-31 19:58:06
Size: 2165
Editor: yakko
Comment:
Deletions are marked like this. Additions are marked like this.
Line 16: Line 16:
== Disk Structures ==

We always have a root file system / and mounted files systems have a bit set in the inode indicating that they are mounted file systems. The inode has a device number which is looked up in the mount table.

Every file system is a seperate system resource. The first logical sector contains a boot block (sector) containing a bootstrap program.

The '''Superblock''' contains static parameters of the file system including:

   * Size of hte file system
   * The block and fragment sizes of data
   * The free blocks list (like a stack, but maintained as a linked list orginally)

Free blocks are removed and pushed from the front of the free blocks list. '''''This allocation operation causes a files to become more and more fragmented as disk activity continues'''''. As a result BSD 7 used only 3% of the bandwidth available to the disk drive on average.

== Changes in 4.2 BSD File allocation routines ==

To improve efficiency and robustness, '''cylinder groups''' where born. Cylinder groups are 1 or more consecutive cylinders grouped together for the purpose of localizing allocation. Each cylinder group contains:

   * Superblock identical to every other cylinder group Superblock
   * Cylinder block which contains
      * Bit map of free datablocks and fragments
      * Bit map of free inodes
      * Statistics on recent progress of allocation strategies???
   * Inodes
   * Data Blocks

||Data Blocks||
||Superblock||
||Cylinder Block||
||Inodes||
||Data Blocks

||

Back to ComputerTerms FileSystem

  • Root File System
  • Mounted File Systems
  • Boot Block or Sector
  • SuperBlock

    • Static parameters of the file system: FS size, Block and fragment sizes parameters affecting allocation policies
    • Problems with allocating Free blocks using the free stack.
  • 4.2BSD changes to improve efficiency and robustness.
    • Cylinder groups

    • Cylinder header information: (superblock, cylinder block, and the inodes)
    • Allocation issues in Cylinder Groups
    • Global and Local allocation routines.

Disk Structures

We always have a root file system / and mounted files systems have a bit set in the inode indicating that they are mounted file systems. The inode has a device number which is looked up in the mount table.

Every file system is a seperate system resource. The first logical sector contains a boot block (sector) containing a bootstrap program.

The Superblock contains static parameters of the file system including:

  • Size of hte file system
  • The block and fragment sizes of data
  • The free blocks list (like a stack, but maintained as a linked list orginally)

Free blocks are removed and pushed from the front of the free blocks list. This allocation operation causes a files to become more and more fragmented as disk activity continues. As a result BSD 7 used only 3% of the bandwidth available to the disk drive on average.

Changes in 4.2 BSD File allocation routines

To improve efficiency and robustness, cylinder groups where born. Cylinder groups are 1 or more consecutive cylinders grouped together for the purpose of localizing allocation. Each cylinder group contains:

  • Superblock identical to every other cylinder group Superblock
  • Cylinder block which contains
    • Bit map of free datablocks and fragments
    • Bit map of free inodes
    • Statistics on recent progress of allocation strategies???
  • Inodes
  • Data Blocks

Data Blocks

Superblock

Cylinder Block

Inodes

||Data Blocks

||

Back to ComputerTerms FileSystem

DiskStructures (last edited 2004-04-13 22:49:31 by yakko)