Drop 'size' argument from bio_endio and bi_end_io
[deliverable/linux.git] / drivers / md / raid0.c
index b8216bc6db45122e038bef4d7ae02d37a01dc1b1..ef0da2d8495969de264563ce7ee6751afe002aff 100644 (file)
@@ -420,7 +420,7 @@ static int raid0_make_request (struct request_queue *q, struct bio *bio)
        const int rw = bio_data_dir(bio);
 
        if (unlikely(bio_barrier(bio))) {
-               bio_endio(bio, bio->bi_size, -EOPNOTSUPP);
+               bio_endio(bio, -EOPNOTSUPP);
                return 0;
        }
 
@@ -490,7 +490,7 @@ bad_map:
                " or bigger than %dk %llu %d\n", chunk_size, 
                (unsigned long long)bio->bi_sector, bio->bi_size >> 10);
 
-       bio_io_error(bio, bio->bi_size);
+       bio_io_error(bio);
        return 0;
 }
                           
This page took 0.03714 seconds and 5 git commands to generate.