fs: pass only I_DIRTY_INODE flags to ->dirty_inode
authorEric Biggers <ebiggers@google.com>
Tue, 12 Jan 2021 19:02:48 +0000 (11:02 -0800)
committerJan Kara <jack@suse.cz>
Wed, 13 Jan 2021 16:26:35 +0000 (17:26 +0100)
->dirty_inode is now only called when I_DIRTY_INODE (I_DIRTY_SYNC and/or
I_DIRTY_DATASYNC) is set.  However it may still be passed other dirty
flags at the same time, provided that these other flags happened to be
passed to __mark_inode_dirty() at the same time as I_DIRTY_INODE.

This doesn't make sense because there is no reason for filesystems to
care about these extra flags.  Nor are filesystems notified about all
updates to these other flags.

Therefore, mask the flags before passing them to ->dirty_inode.

Also properly document ->dirty_inode in vfs.rst.

Link: https://lore.kernel.org/r/20210112190253.64307-7-ebiggers@kernel.org
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Jan Kara <jack@suse.cz>
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Documentation/filesystems/vfs.rst
fs/fs-writeback.c

index ca52c82..287b809 100644 (file)
@@ -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
index b7616bb..2e60640 100644 (file)
@@ -2259,7 +2259,7 @@ void __mark_inode_dirty(struct inode *inode, int flags)
                trace_writeback_dirty_inode_start(inode, flags);
 
                if (sb->s_op->dirty_inode)
-                       sb->s_op->dirty_inode(inode, flags);
+                       sb->s_op->dirty_inode(inode, flags & I_DIRTY_INODE);
 
                trace_writeback_dirty_inode(inode, flags);