mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-21 14:11:20 +00:00
fs: remove the unused error argument to dio_end_io()
Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Bart Van Assche <Bart.VanAssche@sandisk.com> Signed-off-by: Jens Axboe <axboe@fb.com>
This commit is contained in:
parent
9966afaf91
commit
4055351cdb
3 changed files with 5 additions and 6 deletions
|
@ -348,13 +348,12 @@ static void dio_bio_end_io(struct bio *bio)
|
|||
/**
|
||||
* dio_end_io - handle the end io action for the given bio
|
||||
* @bio: The direct io bio thats being completed
|
||||
* @error: Error if there was one
|
||||
*
|
||||
* 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, int error)
|
||||
void dio_end_io(struct bio *bio)
|
||||
{
|
||||
struct dio *dio = bio->bi_private;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue