Skip to content

Commit

Permalink
jsflash: dequeue in-flight request
Browse files Browse the repository at this point in the history
jsflash processes requests one-by-one synchronously from a kthread and
can be easily converted to dequeueing model.  Convert it.

[ Impact: dequeue in-flight request ]

Signed-off-by: Tejun Heo <[email protected]>
Cc: Pete Zaitcev <[email protected]>
Signed-off-by: Jens Axboe <[email protected]>
  • Loading branch information
htejun authored and Jens Axboe committed May 11, 2009
1 parent 1498ada commit 6b0bf40
Showing 1 changed file with 17 additions and 11 deletions.
28 changes: 17 additions & 11 deletions drivers/sbus/char/jsflash.c
Original file line number Diff line number Diff line change
Expand Up @@ -186,31 +186,37 @@ static void jsfd_do_request(struct request_queue *q)
{
struct request *req;

while ((req = elv_next_request(q)) != NULL) {
req = elv_next_request(q);
if (req)
blkdev_dequeue_request(req);

while (req) {
struct jsfd_part *jdp = req->rq_disk->private_data;
unsigned long offset = blk_rq_pos(req) << 9;
size_t len = blk_rq_cur_bytes(req);
int err = -EIO;

if ((offset + len) > jdp->dsize) {
__blk_end_request_cur(req, -EIO);
continue;
}
if ((offset + len) > jdp->dsize)
goto end;

if (rq_data_dir(req) != READ) {
printk(KERN_ERR "jsfd: write\n");
__blk_end_request_cur(req, -EIO);
continue;
goto end;
}

if ((jdp->dbase & 0xff000000) != 0x20000000) {
printk(KERN_ERR "jsfd: bad base %x\n", (int)jdp->dbase);
__blk_end_request_cur(req, -EIO);
continue;
goto end;
}

jsfd_read(req->buffer, jdp->dbase + offset, len);

__blk_end_request_cur(req, 0);
err = 0;
end:
if (!__blk_end_request_cur(req, err)) {
req = elv_next_request(q);
if (req)
blkdev_dequeue_request(req);
}
}
}

Expand Down

0 comments on commit 6b0bf40

Please sign in to comment.