Inode pointer structure

Inode pointer structure

The inode pointer structure is a structure adopted by the inode of a file in the Unix File System (UFS) or other related file systems to list the addresses of a file's data blocks. In the past, the structure may have consisted of eleven or thirteen pointers, but most modern file systems use fifteen pointers. These pointers consist of:

* Twelve pointers that directly point to blocks of the file's data (direct pointers)
* One singly indirect pointer (a pointer that points to a block of pointers that then point to blocks of the file's data)
* One doubly indirect pointer (a pointer that points to a block of pointers that point to other blocks of pointers that then point to blocks of the file's data)
* One triply indirect pointer (a pointer that points to a block of pointers that point to other blocks of pointers that point to other blocks of pointers that then point to blocks of the file's data)

The structure is partially illustrated in the diagram accompanying this article. The structure allows for inodes to describe very large files in a file systems with a fixed logical block size. Central to the mechanism is that blocks of addresses (also called "indirect blocks") are only allocated as needed. For example, a 10 block file (probably less than 80 kB in size) would be described using just the inode because its 10 blocks fit in to the ten direct pointers. However an 11 block file needs the inode in addition to an indirect block to contain the eleventh address.

The inode pointer structure not only allows for files to easily be allocated to non-contiguous blocks, it also allows the data at a particular location inside a file to be easily located. This is possible because the logical block size is fixed. For example, if each block is 8 kB, file data at 120 to 128 kB would be pointed to by the sixth pointer of the first indirect block (assuming ten direct pointers in the inode pointer structure).

Unlike the inodes, which are fixed in number and allocated in a special part of the file system, the indirect blocks may be of any number and are allocated in the same part of the file system as data blocks. The ext3 file system, popular with Linux users, is an example of one of the many UFS-based file systems to adopt the inode pointer structure.

References

* [http://lwn.net/Articles/187321/ Ext3 for large file systems] , LWN.net, June 12, 2006.
* [http://www.angelfire.com/myband/binusoman/Unix.html Unix File System] , Binu, accessed August 24, 2008.
* [http://www.apl.jhu.edu/Misc/Unix-info/workshop/fstour.html A Basic UNIX Tutorial] , Idaho State University, January 9, 1996.
*


Wikimedia Foundation. 2010.

Игры ⚽ Поможем написать реферат

Look at other dictionaries:

  • Inode — In computing, an inode is a data structure on a traditional Unix style file system such as UFS. An inode stores basic information about a regular file, directory, or other file system object. Details When a file system is created, data structures …   Wikipedia

  • Inode — Les inodes (contraction de « index » et « node »; en français : nœud d index) sont des structures de données contenant des informations concernant les fichiers stockés dans certains systèmes de fichiers (notamment de type …   Wikipédia en Français

  • Ctrie — A concurrent hash trie or Ctrie[1] is a concurrent thread safe lock free implementation of a hash array mapped trie. It is used to implement the concurrent map abstraction. It has particularly scalable concurrent insert and remove operations and… …   Wikipedia

  • I-node — Inode Les inodes (contraction de « index » et « node »; en français : nœud d index) sont des structures de données contenant des informations concernant les fichiers stockés dans certains systèmes de fichiers (notamment… …   Wikipédia en Français

  • I-noeud — Inode Les inodes (contraction de « index » et « node »; en français : nœud d index) sont des structures de données contenant des informations concernant les fichiers stockés dans certains systèmes de fichiers (notamment… …   Wikipédia en Français

  • I-nœud — Inode Les inodes (contraction de « index » et « node »; en français : nœud d index) sont des structures de données contenant des informations concernant les fichiers stockés dans certains systèmes de fichiers (notamment… …   Wikipédia en Français

  • Inodes — Inode Les inodes (contraction de « index » et « node »; en français : nœud d index) sont des structures de données contenant des informations concernant les fichiers stockés dans certains systèmes de fichiers (notamment… …   Wikipédia en Français

  • Inoeud — Inode Les inodes (contraction de « index » et « node »; en français : nœud d index) sont des structures de données contenant des informations concernant les fichiers stockés dans certains systèmes de fichiers (notamment… …   Wikipédia en Français

  • Noeud d'index — Inode Les inodes (contraction de « index » et « node »; en français : nœud d index) sont des structures de données contenant des informations concernant les fichiers stockés dans certains systèmes de fichiers (notamment… …   Wikipédia en Français

  • Lien Symbolique — Pour les articles homonymes, voir Lien. Le « Nom B » est un lien symbolique sur le fichier « Nom A ». Un lien symbolique …   Wikipédia en Français

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”