aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md/dm.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/md/dm.c')
-rw-r--r--drivers/md/dm.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/drivers/md/dm.c b/drivers/md/dm.c
index b42e71bb9e67..d8544e1a4c1f 100644
--- a/drivers/md/dm.c
+++ b/drivers/md/dm.c
@@ -482,9 +482,13 @@ static int clone_endio(struct bio *bio, unsigned int done, int error)
482 r = endio(tio->ti, bio, error, &tio->info); 482 r = endio(tio->ti, bio, error, &tio->info);
483 if (r < 0) 483 if (r < 0)
484 error = r; 484 error = r;
485 else if (r > 0) 485 else if (r == DM_ENDIO_INCOMPLETE)
486 /* the target wants another shot at the io */ 486 /* The target will handle the io */
487 return 1; 487 return 1;
488 else if (r) {
489 DMWARN("unimplemented target endio return value: %d", r);
490 BUG();
491 }
488 } 492 }
489 493
490 dec_pending(tio->io, error); 494 dec_pending(tio->io, error);
@@ -542,7 +546,7 @@ static void __map_bio(struct dm_target *ti, struct bio *clone,
542 atomic_inc(&tio->io->io_count); 546 atomic_inc(&tio->io->io_count);
543 sector = clone->bi_sector; 547 sector = clone->bi_sector;
544 r = ti->type->map(ti, clone, &tio->info); 548 r = ti->type->map(ti, clone, &tio->info);
545 if (r > 0) { 549 if (r == DM_MAPIO_REMAPPED) {
546 /* the bio has been remapped so dispatch it */ 550 /* the bio has been remapped so dispatch it */
547 551
548 blk_add_trace_remap(bdev_get_queue(clone->bi_bdev), clone, 552 blk_add_trace_remap(bdev_get_queue(clone->bi_bdev), clone,
@@ -560,6 +564,9 @@ static void __map_bio(struct dm_target *ti, struct bio *clone,
560 clone->bi_private = md->bs; 564 clone->bi_private = md->bs;
561 bio_put(clone); 565 bio_put(clone);
562 free_tio(md, tio); 566 free_tio(md, tio);
567 } else if (r) {
568 DMWARN("unimplemented target map return value: %d", r);
569 BUG();
563 } 570 }
564} 571}
565 572