Skip to content

Commit b75b7ca

Browse files
goldwynrkdave
authored andcommitted
fs: remove dio_end_io()
Since we removed the last user of dio_end_io(), remove the helper function dio_end_io(). Reviewed-by: Nikolay Borisov <[email protected]> Reviewed-by: Johannes Thumshirn <[email protected]> Reviewed-by: Christoph Hellwig <[email protected]> Signed-off-by: Goldwyn Rodrigues <[email protected]> Reviewed-by: David Sterba <[email protected]> Signed-off-by: David Sterba <[email protected]>
1 parent a43a67a commit b75b7ca

File tree

2 files changed

+0
-21
lines changed

2 files changed

+0
-21
lines changed

fs/direct-io.c

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -386,25 +386,6 @@ static void dio_bio_end_io(struct bio *bio)
386386
spin_unlock_irqrestore(&dio->bio_lock, flags);
387387
}
388388

389-
/**
390-
* dio_end_io - handle the end io action for the given bio
391-
* @bio: The direct io bio thats being completed
392-
*
393-
* This is meant to be called by any filesystem that uses their own dio_submit_t
394-
* so that the DIO specific endio actions are dealt with after the filesystem
395-
* has done it's completion work.
396-
*/
397-
void dio_end_io(struct bio *bio)
398-
{
399-
struct dio *dio = bio->bi_private;
400-
401-
if (dio->is_async)
402-
dio_bio_end_aio(bio);
403-
else
404-
dio_bio_end_io(bio);
405-
}
406-
EXPORT_SYMBOL_GPL(dio_end_io);
407-
408389
static inline void
409390
dio_bio_alloc(struct dio *dio, struct dio_submit *sdio,
410391
struct block_device *bdev,

include/linux/fs.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3187,8 +3187,6 @@ enum {
31873187
DIO_SKIP_HOLES = 0x02,
31883188
};
31893189

3190-
void dio_end_io(struct bio *bio);
3191-
31923190
ssize_t __blockdev_direct_IO(struct kiocb *iocb, struct inode *inode,
31933191
struct block_device *bdev, struct iov_iter *iter,
31943192
get_block_t get_block,

0 commit comments

Comments
 (0)