JMHoffmann.com

Posts

Notes on F2FS

F2FS is quite a niche file system on Linux. It is aimed at flash storage with low endurance.

F2FS is a mostly log structured file system. This means that it writes to storage in a linear fashion (not random).

It does some random writes at the beginning of the partition to the checkpoint and metadata areas. It also does random writes when space runs low.

Features