Merge tag 'idmapped-mounts-v5.12' of git://git.kernel.org/pub/scm/linux/kernel/git...
[platform/kernel/linux-rpi.git] / Documentation / filesystems / vfs.rst
index 98290ef..2049bbf 100644 (file)
@@ -112,7 +112,7 @@ members are defined:
 
 .. code-block:: c
 
-       struct file_system_operations {
+       struct file_system_type {
                const char *name;
                int fs_flags;
                struct dentry *(*mount) (struct file_system_type *, int,
@@ -270,7 +270,10 @@ or bottom half).
        ->alloc_inode.
 
 ``dirty_inode``
-       this method is called by the VFS to mark an inode dirty.
+       this method is called by the VFS when an inode is marked dirty.
+       This is specifically for the inode itself being marked dirty,
+       not its data.  If the update needs to be persisted by fdatasync(),
+       then I_DIRTY_DATASYNC will be set in the flags argument.
 
 ``write_inode``
        this method is called when the VFS needs to write an inode to