]> git.baikalelectronics.ru Git - kernel.git/commit
ext4: clean up the flags passed to __blockdev_direct_IO
authorJeff Moyer <jmoyer@redhat.com>
Mon, 5 Mar 2012 15:19:52 +0000 (10:19 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Mon, 5 Mar 2012 15:19:52 +0000 (10:19 -0500)
commit6fe492144dc266928242865bc866c4950d8fc957
tree70c2a7cac370084edac29ee0156f52d488ee32ab
parent2e122773b24e0a89d1a533caaa77189af4469b65
ext4: clean up the flags passed to __blockdev_direct_IO

For extent-based files, you can perform DIO to holes, as mentioned in
the comments in ext4_ext_direct_IO.  However, that function passes
DIO_SKIP_HOLES to __blockdev_direct_IO, which is *really* confusing to
the uninitiated reader.  The key, here, is that the get_block function
passed in, ext4_get_block_write, completely ignores the create flag
that is passed to it (the create flag is passed in from the direct I/O
code, which uses the DIO_SKIP_HOLES flag to determine whether or not
it should be cleared).

This is a long-winded way of saying that the DIO_SKIP_HOLES flag is
ultimately ignored.  So let's remove it.

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