public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] loop: fixing cryptoloop troubles.
@ 2003-08-10  2:36 Fruhwirth Clemens
  2003-08-10 14:10 ` Pascal Brisset
  0 siblings, 1 reply; 14+ messages in thread
From: Fruhwirth Clemens @ 2003-08-10  2:36 UTC (permalink / raw)
  To: linux-kernel; +Cc: pascal.brisset-ml, mbligh, kernel, axboe


[-- Attachment #1.1: Type: text/plain, Size: 442 bytes --]

In loop_transfer_bio the initial vector has been computed only once. For any
situation where more than one bio_vec is present the initial vector will be
wrong. Here is the trivial but important fix. 

This will fix the disk corruption problems of cryptoloop for block-backed
loop devices mentioned earlier this month on this list. 

This should close http://bugme.osdl.org/show_bug.cgi?id=1000 

Please confirm.

Regards, Clemens

[-- Attachment #1.2: loop-2.6t2.diff --]
[-- Type: text/plain, Size: 310 bytes --]

--- linux-2.6.0-test2/drivers/block/loop.c~	Sun Jul 27 19:03:16 2003
+++ linux-2.6.0-test2/drivers/block/loop.c	Sun Aug 10 04:22:44 2003
@@ -513,6 +513,7 @@
 					from_bvec->bv_len, IV);
 		kunmap(from_bvec->bv_page);
 		kunmap(to_bvec->bv_page);
+		IV += from_bvec->bv_len >> 9;
 	}
 
 	return ret;

[-- Attachment #2: Type: application/pgp-signature, Size: 232 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2003-08-12  3:31 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-08-10  2:36 [PATCH] loop: fixing cryptoloop troubles Fruhwirth Clemens
2003-08-10 14:10 ` Pascal Brisset
2003-08-10 14:27   ` Christophe Saout
2003-08-10 21:03     ` Fruhwirth Clemens
2003-08-10 22:07       ` Christophe Saout
2003-08-11 13:11         ` Fruhwirth Clemens
2003-08-11 16:16           ` Christophe Saout
2003-08-12  3:30         ` David Wagner
2003-08-10 15:15   ` James Morris
2003-08-10 16:08     ` Pascal Brisset
2003-08-10 16:28       ` James Morris
2003-08-10 18:01         ` Ingo Oeser
2003-08-11  8:38         ` Pascal Brisset
2003-08-11 13:31           ` James Morris

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox