Commit b75b7ca7 authored by Goldwyn Rodrigues's avatar Goldwyn Rodrigues Committed by David Sterba
Browse files

fs: remove dio_end_io()



Since we removed the last user of dio_end_io(), remove the helper
function dio_end_io().

Reviewed-by: default avatarNikolay Borisov <nborisov@suse.com>
Reviewed-by: default avatarJohannes Thumshirn <jthumshirn@suse.de>
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarGoldwyn Rodrigues <rgoldwyn@suse.com>
Reviewed-by: default avatarDavid Sterba <dsterba@suse.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent a43a67a2
Loading
Loading
Loading
Loading
+0 −19
Original line number Original line Diff line number Diff line
@@ -386,25 +386,6 @@ static void dio_bio_end_io(struct bio *bio)
	spin_unlock_irqrestore(&dio->bio_lock, flags);
	spin_unlock_irqrestore(&dio->bio_lock, flags);
}
}


/**
 * dio_end_io - handle the end io action for the given bio
 * @bio: The direct io bio thats being completed
 *
 * This is meant to be called by any filesystem that uses their own dio_submit_t
 * so that the DIO specific endio actions are dealt with after the filesystem
 * has done it's completion work.
 */
void dio_end_io(struct bio *bio)
{
	struct dio *dio = bio->bi_private;

	if (dio->is_async)
		dio_bio_end_aio(bio);
	else
		dio_bio_end_io(bio);
}
EXPORT_SYMBOL_GPL(dio_end_io);

static inline void
static inline void
dio_bio_alloc(struct dio *dio, struct dio_submit *sdio,
dio_bio_alloc(struct dio *dio, struct dio_submit *sdio,
	      struct block_device *bdev,
	      struct block_device *bdev,
+0 −2
Original line number Original line Diff line number Diff line
@@ -3187,8 +3187,6 @@ enum {
	DIO_SKIP_HOLES	= 0x02,
	DIO_SKIP_HOLES	= 0x02,
};
};


void dio_end_io(struct bio *bio);

ssize_t __blockdev_direct_IO(struct kiocb *iocb, struct inode *inode,
ssize_t __blockdev_direct_IO(struct kiocb *iocb, struct inode *inode,
			     struct block_device *bdev, struct iov_iter *iter,
			     struct block_device *bdev, struct iov_iter *iter,
			     get_block_t get_block,
			     get_block_t get_block,