>Someone please explain ext4lazyinit to me
Hello lucmove

My understanding is that ext4lazyinit is a Linux Kernel automated background process. Which initialize the storage inode table.
--- --- --- --- --- --- --- --- --- --- --- --- --- --- --- ---
Below is the same message as above. But with details if you're interested in those.
Depending on the size of the storage, ext4lazyinit might be very quick or very long to fully complete its automated actions. Such as hours or weeks. For example, with an 8 TB storage, I suggest letting ext4lazyinit run between 20 hours to 2 calendar weeks. This estimate range depend on various factors. Such as, but not limited to, the storage speed, and resources available. Also, this estimate range assumes that, during this period, the storage is both always mounted and able to use the full read and write bandwidth. In addition, during this period, optionally, you can logout or shutdown the storage. As ext4lazyinit will automatically resume its automation after the storage is mounted. Either ways, after ext4lazyinit is able to complete all its automated background actions, it will automatically stop.
Below are related answers I found
According to Cyclic3, ext4lazyinit simply allows you to start using the hard drive (hdd) without creating all the inodes for your file system. Source
https://unix.stackexchange.com/quest...f-ext4lazyinit
According to Thomas Kenn. "If [ext4lazyinit is] enabled and the uninit_bg feature is enabled, the inode table will not be fully initialized by mke2fs. This speeds up file system initialization noticeably, but it requires the kernel to finish initializing the file system in the background when the file system is first mounted. If the option value is omitted, it defaults to 1 to enable lazy inode table zeroing. - Thomas Kenn". Source
https://unix.stackexchange.com/q/341015/210877