Commit c8f4c36f authored by Nikolay Borisov's avatar Nikolay Borisov Committed by Jens Axboe

direct-io: Remove unused DIO_ASYNC_EXTEND flag

This flag was added by 60392573 ("direct-io: add flag to allow aio
writes beyond i_size") to support XFS. However, with the rework of
XFS' DIO's path to use iomap in acdda3aa ("xfs: use iomap_dio_rw")
it became redundant. So let's remove it.
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarNikolay Borisov <nborisov@suse.com>
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent fc9de9a5
...@@ -1252,8 +1252,7 @@ do_blockdev_direct_IO(struct kiocb *iocb, struct inode *inode, ...@@ -1252,8 +1252,7 @@ do_blockdev_direct_IO(struct kiocb *iocb, struct inode *inode,
*/ */
if (is_sync_kiocb(iocb)) if (is_sync_kiocb(iocb))
dio->is_async = false; dio->is_async = false;
else if (!(dio->flags & DIO_ASYNC_EXTEND) && else if (iov_iter_rw(iter) == WRITE && end > i_size_read(inode))
iov_iter_rw(iter) == WRITE && end > i_size_read(inode))
dio->is_async = false; dio->is_async = false;
else else
dio->is_async = true; dio->is_async = true;
......
...@@ -2977,9 +2977,6 @@ enum { ...@@ -2977,9 +2977,6 @@ enum {
/* filesystem does not support filling holes */ /* filesystem does not support filling holes */
DIO_SKIP_HOLES = 0x02, DIO_SKIP_HOLES = 0x02,
/* filesystem can handle aio writes beyond i_size */
DIO_ASYNC_EXTEND = 0x04,
/* inode/fs/bdev does not need truncate protection */ /* inode/fs/bdev does not need truncate protection */
DIO_SKIP_DIO_COUNT = 0x08, DIO_SKIP_DIO_COUNT = 0x08,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment