Skip to content

Commit

Permalink
block: convert to dequeueing model (easy ones)
Browse files Browse the repository at this point in the history
plat-omap/mailbox, floppy, viocd, mspro_block, i2o_block and
mmc/card/queue are already pretty close to dequeueing model and can be
converted with simple changes.  Convert them.

While at it,

* xen-blkfront: !fs check moved downwards to share dequeue call with
  normal path.

* mspro_block: __blk_end_request(..., blk_rq_cur_byte()) converted to
  __blk_end_request_cur()

* mmc/card/queue: loop of __blk_end_request() converted to
  __blk_end_request_all()

[ Impact: dequeue in-flight request ]

Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: Rusty Russell <rusty@rustcorp.com.au>
Cc: Jeremy Fitzhardinge <jeremy@xensource.com>
Cc: Stephen Rothwell <sfr@canb.auug.org.au>
Cc: Alex Dubov <oakad@yahoo.com>
Cc: Markus Lidel <Markus.Lidel@shadowconnect.com>
Cc: Pierre Ossman <drzeus@drzeus.cx>
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
  • Loading branch information
htejun authored and Jens Axboe committed May 11, 2009
1 parent fb3ac7f commit 296b2f6
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 18 deletions.
9 changes: 9 additions & 0 deletions arch/arm/plat-omap/mailbox.c
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,8 @@ static void mbox_tx_work(struct work_struct *work)

spin_lock(q->queue_lock);
rq = elv_next_request(q);
if (rq)
blkdev_dequeue_request(rq);
spin_unlock(q->queue_lock);

if (!rq)
Expand All @@ -208,6 +210,9 @@ static void mbox_tx_work(struct work_struct *work)
ret = __mbox_msg_send(mbox, tx_data->msg, tx_data->arg);
if (ret) {
enable_mbox_irq(mbox, IRQ_TX);
spin_lock(q->queue_lock);
blk_requeue_request(q, rq);
spin_unlock(q->queue_lock);
return;
}

Expand Down Expand Up @@ -238,6 +243,8 @@ static void mbox_rx_work(struct work_struct *work)
while (1) {
spin_lock_irqsave(q->queue_lock, flags);
rq = elv_next_request(q);
if (rq)
blkdev_dequeue_request(rq);
spin_unlock_irqrestore(q->queue_lock, flags);
if (!rq)
break;
Expand Down Expand Up @@ -345,6 +352,8 @@ omap_mbox_read(struct device *dev, struct device_attribute *attr, char *buf)
while (1) {
spin_lock_irqsave(q->queue_lock, flags);
rq = elv_next_request(q);
if (rq)
blkdev_dequeue_request(rq);
spin_unlock_irqrestore(q->queue_lock, flags);

if (!rq)
Expand Down
4 changes: 3 additions & 1 deletion drivers/block/floppy.c
Original file line number Diff line number Diff line change
Expand Up @@ -931,7 +931,7 @@ static inline void unlock_fdc(void)
del_timer(&fd_timeout);
cont = NULL;
clear_bit(0, &fdc_busy);
if (elv_next_request(floppy_queue))
if (current_req || elv_next_request(floppy_queue))
do_fd_request(floppy_queue);
spin_unlock_irqrestore(&floppy_lock, flags);
wake_up(&fdc_wait);
Expand Down Expand Up @@ -2913,6 +2913,8 @@ static void redo_fd_request(void)

spin_lock_irq(floppy_queue->queue_lock);
req = elv_next_request(floppy_queue);
if (req)
blkdev_dequeue_request(req);
spin_unlock_irq(floppy_queue->queue_lock);
if (!req) {
do_floppy = NULL;
Expand Down
13 changes: 7 additions & 6 deletions drivers/block/xen-blkfront.c
Original file line number Diff line number Diff line change
Expand Up @@ -301,22 +301,23 @@ static void do_blkif_request(struct request_queue *rq)

while ((req = elv_next_request(rq)) != NULL) {
info = req->rq_disk->private_data;
if (!blk_fs_request(req)) {
__blk_end_request_cur(req, -EIO);
continue;
}

if (RING_FULL(&info->ring))
goto wait;

blkdev_dequeue_request(req);

if (!blk_fs_request(req)) {
__blk_end_request_all(req, -EIO);
continue;
}

pr_debug("do_blk_req %p: cmd %p, sec %lx, "
"(%u/%u) buffer:%p [%s]\n",
req, req->cmd, (unsigned long)blk_rq_pos(req),
blk_rq_cur_sectors(req), blk_rq_sectors(req),
req->buffer, rq_data_dir(req) ? "write" : "read");


blkdev_dequeue_request(req);
if (blkif_queue_request(req)) {
blk_requeue_request(rq, req);
wait:
Expand Down
2 changes: 2 additions & 0 deletions drivers/cdrom/viocd.c
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,8 @@ static void do_viocd_request(struct request_queue *q)
struct request *req;

while ((rwreq == 0) && ((req = elv_next_request(q)) != NULL)) {
blkdev_dequeue_request(req);

if (!blk_fs_request(req))
__blk_end_request_all(req, -EIO);
else if (send_request(req) < 0) {
Expand Down
8 changes: 5 additions & 3 deletions drivers/memstick/core/mspro_block.c
Original file line number Diff line number Diff line change
Expand Up @@ -672,8 +672,7 @@ static int mspro_block_issue_req(struct memstick_dev *card, int chunk)
msb->req_sg);

if (!msb->seg_count) {
chunk = __blk_end_request(msb->block_req, -ENOMEM,
blk_rq_cur_bytes(msb->block_req));
chunk = __blk_end_request_cur(msb->block_req, -ENOMEM);
continue;
}

Expand Down Expand Up @@ -711,6 +710,7 @@ static int mspro_block_issue_req(struct memstick_dev *card, int chunk)
dev_dbg(&card->dev, "issue end\n");
return -EAGAIN;
}
blkdev_dequeue_request(msb->block_req);

dev_dbg(&card->dev, "trying again\n");
chunk = 1;
Expand Down Expand Up @@ -825,8 +825,10 @@ static void mspro_block_submit_req(struct request_queue *q)
return;

if (msb->eject) {
while ((req = elv_next_request(q)) != NULL)
while ((req = elv_next_request(q)) != NULL) {
blkdev_dequeue_request(req);
__blk_end_request_all(req, -ENODEV);
}

return;
}
Expand Down
6 changes: 4 additions & 2 deletions drivers/message/i2o/i2o_block.c
Original file line number Diff line number Diff line change
Expand Up @@ -916,8 +916,10 @@ static void i2o_block_request_fn(struct request_queue *q)
blk_stop_queue(q);
break;
}
} else
__blk_end_request_cur(req, -EIO);
} else {
blkdev_dequeue_request(req);
__blk_end_request_all(req, -EIO);
}
}
};

Expand Down
12 changes: 6 additions & 6 deletions drivers/mmc/card/queue.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,11 @@ static int mmc_queue_thread(void *d)

spin_lock_irq(q->queue_lock);
set_current_state(TASK_INTERRUPTIBLE);
if (!blk_queue_plugged(q))
if (!blk_queue_plugged(q)) {
req = elv_next_request(q);
if (req)
blkdev_dequeue_request(req);
}
mq->req = req;
spin_unlock_irq(q->queue_lock);

Expand Down Expand Up @@ -88,15 +91,12 @@ static void mmc_request(struct request_queue *q)
{
struct mmc_queue *mq = q->queuedata;
struct request *req;
int ret;

if (!mq) {
printk(KERN_ERR "MMC: killing requests for dead queue\n");
while ((req = elv_next_request(q)) != NULL) {
do {
ret = __blk_end_request(req, -EIO,
blk_rq_cur_bytes(req));
} while (ret);
blkdev_dequeue_request(req);
__blk_end_request_all(req, -EIO);
}
return;
}
Expand Down

0 comments on commit 296b2f6

Please sign in to comment.