diff options
author | Nicholas Bellinger <nab@linux-iscsi.org> | 2014-02-07 15:45:39 -0500 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2014-02-07 15:45:39 -0500 |
commit | 14ec77f352cb00ab8425ec2af03bd7e529eefe24 (patch) | |
tree | 7b5258c756c8aa58b7b48245d3854e406025488a /block/blk-mq.c | |
parent | 1be036e9464032362def6b3c13f57bfceefe2dab (diff) |
blk-mq: Add bio_integrity setup to blk_mq_make_request
This patch adds the missing bio_integrity_enabled() +
bio_integrity_prep() setup into blk_mq_make_request()
in order to use DIF protection with scsi-mq.
Cc: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'block/blk-mq.c')
-rw-r--r-- | block/blk-mq.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/block/blk-mq.c b/block/blk-mq.c index f1e63c2ece71..cee96234bf58 100644 --- a/block/blk-mq.c +++ b/block/blk-mq.c | |||
@@ -922,6 +922,11 @@ static void blk_mq_make_request(struct request_queue *q, struct bio *bio) | |||
922 | 922 | ||
923 | blk_queue_bounce(q, &bio); | 923 | blk_queue_bounce(q, &bio); |
924 | 924 | ||
925 | if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) { | ||
926 | bio_endio(bio, -EIO); | ||
927 | return; | ||
928 | } | ||
929 | |||
925 | if (use_plug && blk_attempt_plug_merge(q, bio, &request_count)) | 930 | if (use_plug && blk_attempt_plug_merge(q, bio, &request_count)) |
926 | return; | 931 | return; |
927 | 932 | ||