For a PostgreSQL server installation on Linux, it is beneficial to disable filesystem journaling.
Tip: Because WAL restores database file contents after a crash, journaled filesystems are not necessary for reliable storage of the data files or WAL files. In fact, journaling overhead can reduce performance, especially if journaling causes file system data to be flushed to disk. Fortunately, data flushing during journaling can often be disabled with a filesystem mount option, e.g. data=writeback on a Linux ext3 file system. Journaled file systems do improve boot speed after a crash.
from: Official documentation Write-Ahead Logging (WAL)
Unfortunately I did not found similar information about SQL Server on Windows or Linux, but...
Since SQL Server Sever as all modern relational database management systems do WAL, it seems logical that one also can and should disable file-system journaling on a Ext4 filesystem which is dedicated for MS SQL Server data on a Linux installation , and perhaps the same statement stands for NTFS on a Window installation.
In what measure the previous statements are true?