[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20081001.101215.71084348.k-ueda@ct.jp.nec.com>
Date: Wed, 01 Oct 2008 10:12:15 -0400 (EDT)
From: Kiyoshi Ueda <k-ueda@...jp.nec.com>
To: jens.axboe@...cle.com
Cc: rusty@...tcorp.com.au, oakad@...oo.com, adrian@...en.demon.co.uk,
linux-kernel@...r.kernel.org, linux-scsi@...r.kernel.org,
j-nomura@...jp.nec.com, k-ueda@...jp.nec.com
Subject: [PATCH 2/5] memstick: change to use __blk_end_request()
This patch converts memstick to use __blk_end_request() directly
so that end_{queued|dequeued}_request() can be removed.
Signed-off-by: Kiyoshi Ueda <k-ueda@...jp.nec.com>
Signed-off-by: Jun'ichi Nomura <j-nomura@...jp.nec.com>
Cc: Alex Dubov <oakad@...oo.com>
Cc: Jens Axboe <jens.axboe@...cle.com>
---
drivers/memstick/core/mspro_block.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: linux-2.6-block/drivers/memstick/core/mspro_block.c
===================================================================
--- linux-2.6-block.orig/drivers/memstick/core/mspro_block.c
+++ linux-2.6-block/drivers/memstick/core/mspro_block.c
@@ -828,7 +828,7 @@ static void mspro_block_submit_req(struc
if (msb->eject) {
while ((req = elv_next_request(q)) != NULL)
- end_queued_request(req, -ENODEV);
+ __blk_end_request(req, -ENODEV, blk_rq_bytes(req));
return;
}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists