diff options
author | Mikulas Patocka <mpatocka@redhat.com> | 2009-12-10 18:52:05 -0500 |
---|---|---|
committer | Alasdair G Kergon <agk@redhat.com> | 2009-12-10 18:52:05 -0500 |
commit | c58098be979509a54021e837a47fcad08db31f94 (patch) | |
tree | 88ab7b21dbdac01756d0e835e3e9bc7a1bff7f28 /drivers/md/dm-raid1.c | |
parent | 87968ddd2f3be1c21b932cac30157a83a1c4f935 (diff) |
dm raid1: remove bio_endio from dm_rh_mark_nosync
Move bio completion out of dm_rh_mark_nosync in preparation for the
next patch.
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Reviewed-by: Takahiro Yasui <tyasui@redhat.com>
Tested-by: Takahiro Yasui <tyasui@redhat.com>
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Diffstat (limited to 'drivers/md/dm-raid1.c')
-rw-r--r-- | drivers/md/dm-raid1.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/md/dm-raid1.c b/drivers/md/dm-raid1.c index d1a7f1a4789c..4f466ad75680 100644 --- a/drivers/md/dm-raid1.c +++ b/drivers/md/dm-raid1.c | |||
@@ -779,7 +779,8 @@ static void do_failures(struct mirror_set *ms, struct bio_list *failures) | |||
779 | hold_bio(ms, bio); | 779 | hold_bio(ms, bio); |
780 | else { | 780 | else { |
781 | ms->in_sync = 0; | 781 | ms->in_sync = 0; |
782 | dm_rh_mark_nosync(ms->rh, bio, bio->bi_size, 0); | 782 | dm_rh_mark_nosync(ms->rh, bio); |
783 | bio_endio(bio, 0); | ||
783 | } | 784 | } |
784 | } | 785 | } |
785 | } | 786 | } |