HOME

TheInfoList



OR:

Journalling Flash File System version 2 or JFFS2 is a
log-structured file system A log-structured filesystem is a file system in which data and metadata are written sequentially to a circular buffer, called a log. The design was first proposed in 1988 by John K. Ousterhout and Fred Douglis and first implemented in 1992 by ...
for use with
flash memory Flash memory is an Integrated circuit, electronic Non-volatile memory, non-volatile computer memory storage medium that can be electrically erased and reprogrammed. The two main types of flash memory, NOR flash and NAND flash, are named for t ...
devices. It is the successor to JFFS. JFFS2 has been included into the
Linux kernel The Linux kernel is a Free and open-source software, free and open source Unix-like kernel (operating system), kernel that is used in many computer systems worldwide. The kernel was created by Linus Torvalds in 1991 and was soon adopted as the k ...
since September 23, 2001, when it was merged into the Linux kernel mainline as part of the kernel version 2.4.10 release. JFFS2 is also available for a few
bootloader A bootloader, also spelled as boot loader or called bootstrap loader, is a computer program that is responsible for booting a computer and booting an operating system. If it also provides an interactive menu with multiple boot choices then it's o ...
s, like
Das U-Boot Das U-Boot (subtitled "the Universal Boot Loader" and often shortened to U-Boot; see ''#History, History'' for more about the name) is an open-source software, open-source Bootloader, boot loader used in Embedded system, embedded devices to per ...
,
Open Firmware Open Firmware is a standard defining the interfaces of a computer firmware system, formerly endorsed by the Institute of Electrical and Electronics Engineers (IEEE). It originated at Sun Microsystems where it was known as OpenBoot, and has bee ...
, the eCos RTOS, the RTEMS RTOS, and the RedBoot. Most prominent usage of the JFFS2 comes from
OpenWrt OpenWrt (from ''open wireless router'') is an open-source project for embedded operating systems based on Linux kernel, Linux, primarily used on Embedded system, embedded devices to Router (computing), route network traffic. The main components ...
. At least three file systems have been developed as JFFS2 replacements: LogFS, UBIFS, and YAFFS.


Features

JFFS2 introduced: * Support for
NAND flash Flash memory is an Integrated circuit, electronic Non-volatile memory, non-volatile computer memory storage medium that can be electrically erased and reprogrammed. The two main types of flash memory, NOR flash and NAND flash, are named for t ...
devices. This involved a considerable amount of work as NAND devices have a sequential I/O interface and cannot be memory-mapped for reading. * Hard links. This was not possible in JFFS because of limitations in the on-disk format. * Compression. Five algorithms are available:
zlib zlib ( or "zeta-lib", ) is a software library used for data compression as well as a data format. zlib was written by Jean-loup Gailly and Mark Adler and is an abstraction of the DEFLATE compression algorithm used in their gzip file compre ...
, rubin, lzma, rtime, and lzo. * Better performance. JFFS treated the disk as a purely circular log. This generated a great deal of unnecessary I/O. The
garbage collection Waste collection is a part of the process of waste management. It is the transfer of solid waste from the point of use and disposal to the point of treatment or landfill. Waste collection also includes the curbside collection of recyclable ...
algorithm In mathematics and computer science, an algorithm () is a finite sequence of Rigour#Mathematics, mathematically rigorous instructions, typically used to solve a class of specific Computational problem, problems or to perform a computation. Algo ...
in JFFS2 makes this mostly unnecessary.


Design

As with JFFS, changes to files and directories are "logged" to flash in ''nodes'', of which there are two types: * ''
inode An inode (index node) is a data structure in a Unix-style file system that describes a file-system object such as a file or a directory. Each inode stores the attributes and disk block locations of the object's data. File-system object attribu ...
s'': a header with file metadata, followed by a payload of file data (if any). Compressed payloads are limited to one page. * ''dirent'' nodes: directory entries each holding a name and an inode number. Hard links are represented as different names with the same inode number. The special inode number 0 represents an unlink. As with JFFS, nodes start out as ''valid'' when they are created, and become ''obsolete'' when a newer version has been created elsewhere. Unlike JFFS, however, there is no circular log. Instead, JFFS2 deals in ''blocks'', a unit the same size as the erase segment of the flash medium. Blocks are filled, one at a time, with nodes from bottom up. A ''clean'' block is one that contains only ''valid'' nodes. A ''dirty'' block contains at least one ''obsolete'' node. A ''free'' block contains no nodes. The garbage collector runs in the background, turning ''dirty'' blocks into ''free'' blocks. It does this by copying ''valid'' nodes to a new block and skipping ''obsolete'' ones. That done, it erases the ''dirty'' block and tags it with a special marker designating it as a ''free'' block (to prevent confusion if power is lost during an erase operation). To make wear-levelling more even and prevent erasures from being too concentrated on mostly-static file systems, the garbage collector will occasionally also consume ''clean'' blocks.


Disadvantages

Due to its log-structured design, JFFS2's disadvantages include the following: * All nodes must still be scanned at mount time. This is slow and is becoming an increasingly serious problem as flash devices scale upward into the
terabyte The byte is a unit of digital information that most commonly consists of eight bits. Historically, the byte was the number of bits used to encode a single character of text in a computer and for this reason it is the smallest addressable un ...
range. To overcome this issue, the ''Erase Block Summary'' (EBS) was introduced in version 2.6.15 of the Linux kernel. EBS is placed at the end of each block and updated upon each write to the block, summarizing the block's content; during mounts, EBS is read instead of scanning whole blocks. * Writing many small blocks of data can even lead to negative compression rates, so it is essential for applications to use large write buffers. * There is no practical way to tell how much usable free space is left on a device since this depends both on how well additional data can be compressed, and the writing sequence.


See also

*
List of file systems The following lists identify, characterize, and link to more thorough information on file systems. Many older operating systems support only their one "native" file system, which does not bear any name apart from the name of the operating system i ...
* UBIFS *
NILFS NILFS or NILFS2 (''New Implementation of a Log-structured File System'') is a log-structured file system implementation for the Linux kernel. It was developed by Nippon Telegraph and Telephone Corporation (NTT) Nippon Telegraph and Telephone Corp ...
* F2FS


References


External links


JFFS2 websiteJFFS: The Journalling Flash File System
by David Woodhouse
PDF

JFFS2 official mailing list
{{Filesystem, state=collapsed Disk file systems Embedded Linux Flash file systems supported by the Linux kernel Compression file systems Computer-related introductions in 2001