diff options
author | Milan Broz <mbroz@redhat.com> | 2008-02-07 21:10:57 -0500 |
---|---|---|
committer | Alasdair G Kergon <agk@redhat.com> | 2008-02-07 21:10:57 -0500 |
commit | dec1cedf9d4eabe43f3c7d6af095eff40c139a89 (patch) | |
tree | 1ee57308cac1e018fb670e21bc91822f0250aa83 | |
parent | 0c395b0f8dd7aee394df95b46963fc0f3401cf90 (diff) |
dm crypt: abstract crypt_write_done
Process write request in separate function and queue
final bio through io workqueue.
Signed-off-by: Milan Broz <mbroz@redhat.com>
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
-rw-r--r-- | drivers/md/dm-crypt.c | 41 |
1 files changed, 25 insertions, 16 deletions
diff --git a/drivers/md/dm-crypt.c b/drivers/md/dm-crypt.c index d3c48ad580d9..4df7d2f782d8 100644 --- a/drivers/md/dm-crypt.c +++ b/drivers/md/dm-crypt.c | |||
@@ -577,18 +577,34 @@ static void kcryptd_queue_io(struct dm_crypt_io *io) | |||
577 | 577 | ||
578 | static void kcryptd_crypt_write_io_submit(struct dm_crypt_io *io, int error) | 578 | static void kcryptd_crypt_write_io_submit(struct dm_crypt_io *io, int error) |
579 | { | 579 | { |
580 | struct bio *clone = io->ctx.bio_out; | ||
581 | struct crypt_config *cc = io->target->private; | ||
582 | |||
583 | if (unlikely(error < 0)) { | ||
584 | crypt_free_buffer_pages(cc, clone); | ||
585 | bio_put(clone); | ||
586 | io->error = -EIO; | ||
587 | crypt_dec_pending(io); | ||
588 | return; | ||
589 | } | ||
590 | |||
591 | /* crypt_convert should have filled the clone bio */ | ||
592 | BUG_ON(io->ctx.idx_out < clone->bi_vcnt); | ||
593 | |||
594 | clone->bi_sector = cc->start + io->sector; | ||
595 | io->sector += bio_sectors(clone); | ||
580 | } | 596 | } |
581 | 597 | ||
582 | static void kcryptd_crypt_write_convert(struct dm_crypt_io *io) | 598 | static void kcryptd_crypt_write_convert(struct dm_crypt_io *io) |
583 | { | 599 | { |
584 | struct crypt_config *cc = io->target->private; | 600 | struct crypt_config *cc = io->target->private; |
585 | struct bio *base_bio = io->base_bio; | ||
586 | struct bio *clone; | 601 | struct bio *clone; |
587 | unsigned remaining = base_bio->bi_size; | 602 | unsigned remaining = io->base_bio->bi_size; |
603 | int r; | ||
588 | 604 | ||
589 | atomic_inc(&io->pending); | 605 | atomic_inc(&io->pending); |
590 | 606 | ||
591 | crypt_convert_init(cc, &io->ctx, NULL, base_bio, io->sector); | 607 | crypt_convert_init(cc, &io->ctx, NULL, io->base_bio, io->sector); |
592 | 608 | ||
593 | /* | 609 | /* |
594 | * The allocated buffers can be smaller than the whole bio, | 610 | * The allocated buffers can be smaller than the whole bio, |
@@ -605,20 +621,13 @@ static void kcryptd_crypt_write_convert(struct dm_crypt_io *io) | |||
605 | io->ctx.bio_out = clone; | 621 | io->ctx.bio_out = clone; |
606 | io->ctx.idx_out = 0; | 622 | io->ctx.idx_out = 0; |
607 | 623 | ||
608 | if (unlikely(crypt_convert(cc, &io->ctx) < 0)) { | 624 | remaining -= clone->bi_size; |
609 | crypt_free_buffer_pages(cc, clone); | ||
610 | bio_put(clone); | ||
611 | io->error = -EIO; | ||
612 | crypt_dec_pending(io); | ||
613 | return; | ||
614 | } | ||
615 | 625 | ||
616 | /* crypt_convert should have filled the clone bio */ | 626 | r = crypt_convert(cc, &io->ctx); |
617 | BUG_ON(io->ctx.idx_out < clone->bi_vcnt); | ||
618 | 627 | ||
619 | clone->bi_sector = cc->start + io->sector; | 628 | kcryptd_crypt_write_io_submit(io, r); |
620 | remaining -= clone->bi_size; | 629 | if (unlikely(r < 0)) |
621 | io->sector += bio_sectors(clone); | 630 | return; |
622 | 631 | ||
623 | /* Grab another reference to the io struct | 632 | /* Grab another reference to the io struct |
624 | * before we kick off the request */ | 633 | * before we kick off the request */ |
@@ -631,7 +640,7 @@ static void kcryptd_crypt_write_convert(struct dm_crypt_io *io) | |||
631 | * may be gone already. */ | 640 | * may be gone already. */ |
632 | 641 | ||
633 | /* out of memory -> run queues */ | 642 | /* out of memory -> run queues */ |
634 | if (remaining) | 643 | if (unlikely(remaining)) |
635 | congestion_wait(WRITE, HZ/100); | 644 | congestion_wait(WRITE, HZ/100); |
636 | } | 645 | } |
637 | } | 646 | } |