ext4: remove calls to ext4_jbd2_file_inode() from delalloc write path
authorTheodore Ts'o <tytso@mit.edu>
Fri, 16 Nov 2012 04:08:57 +0000 (23:08 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Fri, 16 Nov 2012 04:08:57 +0000 (23:08 -0500)
commitf3b59291a69d0b734be1fc8be489fef2dd846d3d
tree496fc7b7ce6ae9375340d9994a0fbaf522e08890
parent66bea92c69477a75a5d37b9bfed5773c92a3c4b4
ext4: remove calls to ext4_jbd2_file_inode() from delalloc write path

The calls to ext4_jbd2_file_inode() are needed to guarantee that we do
not expose stale data in the data=ordered mode.  However, they are not
necessary because in all of the cases where we have newly allocated
blocks in the delayed allocation write path, we immediately submit the
dirty pages for I/O.  Hence, we can avoid the overhead of adding the
inode to the list of inodes whose data pages will be to be flushed out
to disk completely during the next commit operation.

Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
fs/ext4/inode.c