diff options
author | Jan Kara <jack@suse.cz> | 2016-11-21 00:10:09 +0100 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2016-11-21 00:10:09 +0100 |
commit | 96f8ba3dd632aff684cc7c67d9f4af435be0341c (patch) | |
tree | 37f21f25ad22a196966ce2a9ead0e4f695ccd17b /fs/ext4/file.c | |
parent | ext4: DAX iomap write support (diff) | |
download | linux-96f8ba3dd632aff684cc7c67d9f4af435be0341c.tar.xz linux-96f8ba3dd632aff684cc7c67d9f4af435be0341c.zip |
ext4: avoid split extents for DAX writes
Currently mapping of blocks for DAX writes happen with
EXT4_GET_BLOCKS_PRE_IO flag set. That has a result that each
ext4_map_blocks() call creates a separate written extent, although it
could be merged to the neighboring extents in the extent tree. The
reason for using this flag is that in case the extent is unwritten, we
need to convert it to written one and zero it out. However this "convert
mapped range to written" operation is already implemented by
ext4_map_blocks() for the case of data writes into unwritten extent. So
just use flags for that mode of operation, simplify the code, and avoid
unnecessary split extents.
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/file.c')
0 files changed, 0 insertions, 0 deletions