]> Pileus Git - ~andy/linux/commitdiff
mtip32xx: update to new ->make_request() API
authorJens Axboe <axboe@kernel.dk>
Sat, 5 Nov 2011 07:36:21 +0000 (08:36 +0100)
committerJens Axboe <axboe@kernel.dk>
Sat, 5 Nov 2011 07:36:21 +0000 (08:36 +0100)
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/block/mtip32xx/mtip32xx.c

index f7a33211a81adbaaa15b9841b2f91987ee318aff..880facbb0534601b59a1f09fe9a86c3f1af5a6d1 100644 (file)
@@ -2984,10 +2984,8 @@ static const struct block_device_operations mtip_block_ops = {
  *              the driver data structure.
  * @bio   Pointer to the BIO.
  *
- * return value
- *     0
  */
-static int mtip_make_request(struct request_queue *queue, struct bio *bio)
+static void mtip_make_request(struct request_queue *queue, struct bio *bio)
 {
        struct driver_data *dd = queue->queuedata;
        struct scatterlist *sg;
@@ -2998,12 +2996,12 @@ static int mtip_make_request(struct request_queue *queue, struct bio *bio)
        if (unlikely(!bio_has_data(bio))) {
                blk_queue_flush(queue, 0);
                bio_endio(bio, 0);
-               return 0;
+               return;
        }
 
        if (unlikely(atomic_read(&dd->eh_active))) {
                bio_endio(bio, -EBUSY);
-               return 0;
+               return;
        }
 
        sg = mtip_hw_get_scatterlist(dd, &tag);
@@ -3015,7 +3013,7 @@ static int mtip_make_request(struct request_queue *queue, struct bio *bio)
                                "Maximum number of SGL entries exceeded");
                        bio_io_error(bio);
                        mtip_hw_release_scatterlist(dd, tag);
-                       return 0;
+                       return;
                }
 
                /* Create the scatter list for this bio. */
@@ -3036,11 +3034,8 @@ static int mtip_make_request(struct request_queue *queue, struct bio *bio)
                                bio,
                                bio->bi_rw & REQ_FLUSH,
                                bio_data_dir(bio));
-       } else {
+       } else
                bio_io_error(bio);
-       }
-
-       return 0;
 }
 
 /*