X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=Filesystems.m4;h=1a77ef882e9ebb6c412380add1c2787acc32a291;hb=refs%2Fheads%2Fpu;hp=9035de5218f1ab8da1e4c6e399438f2b523002a8;hpb=d9515637ca709f2ad9fbb4e1e90690981b8db1ad;p=aple.git diff --git a/Filesystems.m4 b/Filesystems.m4 index 9035de5..7750dab 100644 --- a/Filesystems.m4 +++ b/Filesystems.m4 @@ -829,6 +829,27 @@ it's best to make the LV slightly larger than necessary and then enlarge the filesystem to the maximal possible size by running resize2fs(8) without specifying the new size.

+SUBSECTION(«Fast Commits») + +

+ +Optimization introduced in 2020 (Linux-5.10). + +activated at mkfs time + +light-weight journaling method + +Idea: parts of the metadata written to the log can instead be derived +from the inode. Leads to more compact format. + +Implementation: additional journal for fast commits, i.e., for those +operations that can be optimized. Contains changes at the *file* level + +

  • Check /proc/fs/ext4/dev/fc_info to see whether fast +commits are supported in the runing kernel.
  • + +

    + EXERCISES()