Difference between revisions of "WAITS on-disk file structure"

From Computer History Wiki
Jump to: navigation, search
(Stub.)
 
(Add some incomplete info.)
Line 1: Line 1:
 
{{stub}}
 
{{stub}}
  
This is going to describe WAITS' on-disk file structure; in particular the version used on a KL10 in 1988.  There are differences against the KA10 1974 data structures.
+
This is going to describe [[WAITS]]' on-disk file structure; in particular the version used with RP06 and RP07 packs on a [[KL10]] in 1988.  There are differences against the [[KA10]] 1974 data structures. Much of this information comes from the last version of RSKINI, which is used to format a disk pack.
 +
 
 +
== Disk area units and geometry ==
 +
 
 +
A disk sector of 128 words is often called '''record''', especially if it's part of the disk structure.  Some disk areas fall outside the usable range of sectors, and the linear record number does not take those into account.
 +
 
 +
Four records together make up a '''page''', always 512 words.  Some number of sectors, usually 9 or 10, grouped together is called a '''block'''.  The this is the smallest unit of allocation.  The bits in the SAT refer to blocks.
 +
 
 +
A disk is viewed as some number of '''cylinders''', each comprising the sectors that can be accessed without a disk seek.  Each cylinder has several '''tracks''', and each track has several records.  WAITS may elect to format the disk with some sectors left over per track.  E.g. only 18 of the 20 sectors on a bootable RP06 track may be used, and the last two are invisible to the file system code.
 +
 
 +
The records of a cylinder are divided into pages.  The logical end of the cylinder may have some left over records after the last page.  The cylinder pages are divided into blocks; again there may be an unused remainder since pages might not divide blocks evenly.
 +
 
 +
== HOM blocks ==
 +
 
 +
There are two '''HOM''' blocks.  They are both at the logical beginning of the disk, i.e. the first surface of the first cylinder.  The first block is sector 1 (starting from 0), and the second is 10 (decimal).
 +
 
 +
== BAT block ==
 +
 
 +
The '''BAT''' block is after the first HOM block, and is optional.
 +
 
 +
== SAT ==
 +
 
 +
The '''SAT''' is the ''Something... Allocation Table.
 +
 
 +
== Swapping area ==
 +
 
 +
== MFD ==
 +
 
 +
The '''MFD''' is the ''Master File Directory''.
 +
 
 +
== UFD ==

Revision as of 18:05, 12 June 2023

This is going to describe WAITS' on-disk file structure; in particular the version used with RP06 and RP07 packs on a KL10 in 1988. There are differences against the KA10 1974 data structures. Much of this information comes from the last version of RSKINI, which is used to format a disk pack.

Disk area units and geometry

A disk sector of 128 words is often called record, especially if it's part of the disk structure. Some disk areas fall outside the usable range of sectors, and the linear record number does not take those into account.

Four records together make up a page, always 512 words. Some number of sectors, usually 9 or 10, grouped together is called a block. The this is the smallest unit of allocation. The bits in the SAT refer to blocks.

A disk is viewed as some number of cylinders, each comprising the sectors that can be accessed without a disk seek. Each cylinder has several tracks, and each track has several records. WAITS may elect to format the disk with some sectors left over per track. E.g. only 18 of the 20 sectors on a bootable RP06 track may be used, and the last two are invisible to the file system code.

The records of a cylinder are divided into pages. The logical end of the cylinder may have some left over records after the last page. The cylinder pages are divided into blocks; again there may be an unused remainder since pages might not divide blocks evenly.

HOM blocks

There are two HOM blocks. They are both at the logical beginning of the disk, i.e. the first surface of the first cylinder. The first block is sector 1 (starting from 0), and the second is 10 (decimal).

BAT block

The BAT block is after the first HOM block, and is optional.

SAT

The SAT is the Something... Allocation Table.

Swapping area

MFD

The MFD is the Master File Directory.

UFD