block: Call blkdev_dio_unaligned() from blkdev_direct_IO()
authorJohn Garry <john.g.garry@oracle.com>
Mon, 15 Apr 2024 12:20:20 +0000 (12:20 +0000)
committerJens Axboe <axboe@kernel.dk>
Mon, 15 Apr 2024 14:12:22 +0000 (08:12 -0600)
commitde4c7bef9d330e4a59c78181bd596c7569d7208e
treed9a19bf46f11687d8bdc5ac7ab42e0b10098aaad
parent688c8b9208356eb5c3fa8047f3e35666f3049a4d
block: Call blkdev_dio_unaligned() from blkdev_direct_IO()

blkdev_dio_unaligned() is called from __blkdev_direct_IO(),
__blkdev_direct_IO_simple(), and __blkdev_direct_IO_async(), and all these
are only called from blkdev_direct_IO().

Move the blkdev_dio_unaligned() call to the common callsite,
blkdev_direct_IO().

Pass those functions the bdev pointer from blkdev_direct_IO(), as it is
non-trivial to look up.

Reviewed-by: Keith Busch <kbusch@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Luis Chamberlain <mcgrof@kernel.org>
Signed-off-by: John Garry <john.g.garry@oracle.com>
Link: https://lore.kernel.org/r/20240415122020.1541594-1-john.g.garry@oracle.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/fops.c