From: Philip J Kelleher Date: Tue, 18 Jun 2013 19:48:38 +0000 (-0500) Subject: rsxx: Adapter address space sanity check. X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=3eb8dcafb5a73041e2f3b4a39c057a58e4354d83;p=linux-beck.git rsxx: Adapter address space sanity check. Adding a sanity check to guarentee that DMAs outside of the device's address space will be errored out right away. Signed-off-by: Philip J Kelleher Signed-off-by: Jens Axboe --- diff --git a/drivers/block/rsxx/dev.c b/drivers/block/rsxx/dev.c index a092f58db212..d7af441880be 100644 --- a/drivers/block/rsxx/dev.c +++ b/drivers/block/rsxx/dev.c @@ -174,6 +174,9 @@ static void rsxx_make_request(struct request_queue *q, struct bio *bio) if (!card) goto req_err; + if (bio->bi_sector + (bio->bi_size >> 9) > get_capacity(card->gendisk)) + goto req_err; + if (unlikely(card->halt)) { st = -EFAULT; goto req_err;