]> Pileus Git - ~andy/linux/commitdiff
block, xen/blkback: remove blk_[get|put]_queue calls.
authorKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Mon, 18 Apr 2011 18:17:49 +0000 (14:17 -0400)
committerKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Mon, 18 Apr 2011 18:26:17 +0000 (14:26 -0400)
They were used to check if the queue does not have QUEUE_FLAG_DEAD
set. That is not necessary anymore as the 'submit_io' call
ends up doing that for us.

Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
block/blk-core.c
drivers/xen/blkback/blkback.c

index 9b60e69a540020ed5f111811f63f81f74234eda6..90f22cc30799cf8bf71e25c4cf68718c3fbf0cf3 100644 (file)
@@ -351,7 +351,6 @@ void blk_put_queue(struct request_queue *q)
 {
        kobject_put(&q->kobj);
 }
-EXPORT_SYMBOL_GPL(blk_put_queue);
 
 /*
  * Note: If a driver supplied the queue lock, it should not zap that lock
@@ -573,7 +572,6 @@ int blk_get_queue(struct request_queue *q)
 
        return 1;
 }
-EXPORT_SYMBOL_GPL(blk_get_queue);
 
 static inline void blk_free_request(struct request_queue *q, struct request *rq)
 {
index 3751325bfc32681e399b9d86e17bf83bfd348640..59a2bae0f35e165faf84923cece9e87c7c04075f 100644 (file)
@@ -479,7 +479,6 @@ static void dispatch_rw_block_io(struct blkif_st *blkif,
        int i, nbio = 0;
        int operation;
        struct blk_plug plug;
-       struct request_queue *q;
 
        switch (req->operation) {
        case BLKIF_OP_READ:
@@ -542,9 +541,6 @@ static void dispatch_rw_block_io(struct blkif_st *blkif,
                        goto fail_response;
                }
        }
-       q = bdev_get_queue(preq.bdev);
-       if (!q)
-               goto fail_response;
        /* If we have failed at this point, we need to undo the M2P override,
         * set gnttab_set_unmap_op on all of the grant references and perform
         * the hypercall to unmap the grants - that is all done in
@@ -596,7 +592,6 @@ static void dispatch_rw_block_io(struct blkif_st *blkif,
        atomic_set(&pending_req->pendcnt, nbio);
 
        /* Get a reference count for the disk queue and start sending I/O */
-       blk_get_queue(q);
        blk_start_plug(&plug);
 
        for (i = 0; i < nbio; i++)
@@ -604,7 +599,6 @@ static void dispatch_rw_block_io(struct blkif_st *blkif,
 
        blk_finish_plug(&plug);
        /* Let the I/Os go.. */
-       blk_put_queue(q);
 
        if (operation == READ)
                blkif->st_rd_sect += preq.nr_sects;