Notice: We have migrated to GitLab launching 2024-05-01 see here: https://gitlab.rtems.org/

Changes between Version 8 and Version 9 of TBR/UserManual/RTEMS_File_System


Ignore:
Timestamp:
02/23/10 07:49:11 (14 years ago)
Author:
ChrisJohns
Comment:

/* RFS Structure */

Legend:

Unmodified
Added
Removed
Modified
  • TBR/UserManual/RTEMS_File_System

    v8 v9  
    2222|}
    2323</blockquote>
    24 == Groups ==
     24= Groups =
    2525
    2626A group is broken up into the block allocation bitmap the inode allocation bitmap, the inodes, and the data blocks.
     
    4040
    4141The block bitmap contains a single bit for every block in a group. The default format is to allocate the size of a group based on the number of bits that fit into a single block. For example a block of 1024 bytes has 8,192 bits therefore a group can have 8192 blocks including the block bitmap block. The inode bitmap has a bit for ever inode in the group. An inode is the information about a node on the disk. A node is the data that links the elements of the disk together to create directories, files, and nodes as well as hold times and flags. The number of inodes in a group is a format configuration parameter. The default is use 1% of the disk's blocks for inode data. Again with a 1024 byte block size there are 18 inodes per block and 1448 inodes per group. Inodes do not span block boundaries.
    42 == Inodes ==
     42= Inodes =
    4343
    4444
     
    4646
    4747Inodes hold the number of links to itself. If 0 the inode is not linked and therefore should be marked as free in the group's inode allocator bitmap. An inode can have a number of links or hard links it is not of type directory. Inodes also hold the owner details and the permission bits. These control access to the inode via the operating calls. Finally inodes hold the access, modified and changed times. The access time if the last time the file was read, the modified time the last time file was written to and the changed time the last time the inode was written to.
    48 == Device Nodes ==
     48= Device Nodes =
    4949
    5050
    5151A block or character device node is an inode that holds the major and minor device number. These numbers are held in the block map's slots. A directory entry links to the inode therefore giving it a name in the file system.
    52 == Directory ==
     52= Directory =
    5353
    5454
     
    7171
    7272Directories are maintained unsorted, sparse and not indexed. If directory performance is an issue it can be addressed in future versions. Blocks of directory entried are maintained compacted. As entries are removed the entried in the block are compacted, how-ever intermediate blocks in a block map are not removed and freed when they become empty while trailing empty blocks are.
    73 == Regular Files ==
     73= Regular Files =
    7474
    7575