From: Andrew Morton Date: Thu, 28 Jul 2005 18:02:26 +0000 (-0700) Subject: [PATCH] Fw: [PATCH] bio_clone fix X-Git-Tag: v2.6.12.4~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=60372783e59079bdfd3ba0477e1907669249a489;p=thirdparty%2Fkernel%2Fstable.git [PATCH] Fw: [PATCH] bio_clone fix [PATCH] bio_clone fix Fix bug introduced in 2.6.11-rc2: when we clone a BIO we need to copy over the current index into it as well. It corrupts data with some MD setups. See http://bugzilla.kernel.org/show_bug.cgi?id=4946 Huuuuuuuuge thanks to Matthew Stapleton for doggedly chasing this one down. Acked-by: Jens Axboe Cc: Cc: Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds Signed-off-by: Chris Wright --- diff --git a/fs/bio.c b/fs/bio.c index 3a1472acc361e..eb02df13cd63b 100644 --- a/fs/bio.c +++ b/fs/bio.c @@ -261,6 +261,7 @@ inline void __bio_clone(struct bio *bio, struct bio *bio_src) */ bio->bi_vcnt = bio_src->bi_vcnt; bio->bi_size = bio_src->bi_size; + bio->bi_idx = bio_src->bi_idx; bio_phys_segments(q, bio); bio_hw_segments(q, bio); }