tree: f96fc4d3fec4fceda0f65ebac61023929fd977fd [path history] [tgz]
  1. test/
  2. test_files/
  3. third_party/
  4. admin.cc
  5. admin.h
  6. bcache.cc
  7. bcache.h
  8. BUILD.gn
  9. checkpoint.cc
  10. data.cc
  11. dir.cc
  12. dir.h
  13. dir_hash.cc
  14. f2fs.cc
  15. f2fs.h
  16. f2fs_internal.h
  17. f2fs_layout.h
  18. f2fs_lib.h
  19. f2fs_types.h
  20. file.cc
  21. file.h
  22. fsck.cc
  23. fsck.h
  24. gc.cc
  25. inline.cc
  26. mkfs.cc
  27. mkfs.h
  28. mount.cc
  29. mount.h
  30. namei.cc
  31. namestring.h
  32. node.cc
  33. node.h
  34. query.cc
  35. query.h
  36. README.md
  37. recovery.cc
  38. segment.cc
  39. segment.h
  40. super.cc
  41. vnode.cc
  42. vnode.h
  43. vnode_cache.cc
  44. vnode_cache.h
src/storage/f2fs/README.md

What is F2FS?

F2FS is the most commonly used log-structured file system in Linux. It supports flash-friendly features such as adaptive logging, multi-head logging, fsync acceleration, and node address translation. For more information see: https://www.usenix.org/conference/fast15/technical-sessions/presentation/lee

Major Release

1st release (Apr-06-2021)

  • Features: mkfs, mount/umount, read, write, rmdir, mkdir, rename, fsync, lseek, link, unlink
  • Remarks
  • Fuchsia base code ; Thu Mar 11 08:53:24 2021 Prashanth Swaminathan,76a08ad1474 [speak] Migrate to new component templates
  • There is no cache. Every request is handled as a synchronous operation.
  • fsync() triggers checkpointing
  • lock granularity: file operation
  • LFS is used for block allocation by default, and IPU is forced when the number of free sections is below 50%.
  • no background/foreground gc
  • disable the roll-forward recovery
  • 6 active logs
  • disable the ext-identify feature
  • block allocation: LFS, IPU
  • fsck do nothing, but it returns true
  • no discard

2nd release (May-28-2021)

  • Features: truncate, ssr, fsync, recovery
  • Remarks
  • Fuchsia base code ; Thu May 20 07:25:45 2021 Yilong Li, 02c0dfff0fdb
  • support the roll-forward recovery and file level fsync()
  • block allocation: LFS, IPU, SSR
  • truncate

3rd release (June-25-2021)

  • Features: fsck, mount option, mkfs option
  • all fs-tests and large-fs-tests passed
  • Remarks
  • fsck (base: 7f35b548d4b)
  • support the ext-identify feature
  • support discard

4th release (July-30-2021)

  • Features: vnode cache, inline dentry
  • unit test coverage

5th release (August-27-2021)

  • Features: dentry cache
  • Landing
  • Linux compatibility test coverage

6th release (September-30-2021 ~)

  • Features: gc, node cache, pager support, mmap, wb, readahead, ... (as new fuchsia features coming)
  • stress test coverage
  • performance test

How to test

See src/storage/f2fs/test_files/README.md.