- Block suballocation
Block suballocation is a feature of some computer
file system s which allows large blocks or allocation units to be used while making efficient use of "slack" space at the end of large files, space which would otherwise be lost for other use tointernal fragmentation . [us patent|6041407 (Fundamental patent.)]This feature is also called tail merging or tail packing because it is commonly done by packing the "tail", or last partial block, of multiple files into a single block.
Rationale
File systems have traditionally divided the disk into equally sized blocks to simplify their design and limit the worst-case fragmentation. Block sizes are typically multiples of 512 due to the size of hard
disk sector s. When files are allocated by the traditional file system, only whole blocks can be allocated to individual files. But as file sizes are often not multiples of the file system block size, this design inherently results in the last blocks of files (called tails) to occupy only a part of the block, resulting in what is called internal fragmentation (not to be confused with external fragmentation). This wastage in space can be significant if the file system stores many small files.Suballocation schemes
Block suballocation addresses this problem by dividing up a tail block in some way to allow it to store fragments from other files.
Some block suballocation schemes can perform allocation at the byte level; most, however, simply divide up the block into smaller ones (the divisor usually being some power of 2). For example, if a 38 KiB file is to be stored in a
file system using 32 KiB blocks, the file would normally span two blocks, or 64 KiB, for storage; the remaining 26 KiB of the second block becomes unused slack space. With a 8 kiB block suballocation, however, the file would occupy just 8 KiB of the second block, leave 2 KiB slack and free the other 24 KiB of the block for other files.Tail packing
Some file systems have since been designed to take advantage of this unused space, and can pack the tails of several files in a single shared tail block. While this may, at first, seem like it would significantly increase file system fragmentation, the negative effect can be mitigated with
readahead features on modernoperating system s – when dealing with short files, several tails may be close enough to each another to be read together, and thus adisk seek is not introduced. Such file systems often employ heuristics in order to determine whether tail packing is worthwhile in a given situation,anddefragmentation software may use a more involved heuristic.Efficiency
In some scenarios where the majority of files are shorter than half the block size, such as in a folder of small
source code files or small bitmap images, tail packing can increase storage efficiency even more than twofold, compared to file systems without tail packing.cite web|author =Hans Reiser |date = 2001|title = Hard Disk usage, ReiserFS and Ext2fs |url = http://www.namesys.com/disk_usage.html|accessdate = 2006-12-14]This not only translates into conservation of disk space, but may also introduce performance increases, as due to higher
locality of reference , less data has to be read, also translating into higherpage cache efficiency. However, these advantages can be negated by the increased complexity ofimplementation . [cite web|author =Hans Reiser |date = 2001|title = ReiserFS file system design|url = http://www.namesys.com/X0reiserfs.html|accessdate = 2006-12-14]As of 2007 , the most widely used read-write file systems with support for block suballocation areReiserFS ,Reiser4 and FreeBSD UFS2 [citation|url = http://www.pacnog.org/pacnog1/day1/freebsd/intro-freebsd-additional-topics.pdf|first = Allen|last = Hervey |date = 2005-06-20|title = Introduction to FreeBSD, PacNOG I Workshop, Additional Topics, UFS2 and Soft Updates make for a powerful combination|page = 23|accessdate = 2007-11-04|work = PacNOG I] (where it is ambiguously named "block level fragmentation").Several read-only file systems do not use blocks at all and are thus implicitly suballocated; such file systems double as archive formats.
Criticism
The ReiserFS file system is often criticized for its complexity, and being more prone to fragmentation than many other file systemsFact|date=July 2008, both potentially introduced by the tail packing functionality. This has led some people to suggest turning off tail packing (through the notail mount option) for performance-critical file systems.
See also
*
File system
*Internal fragmentation
*Locality of reference References
*
Wikimedia Foundation. 2010.