diff options
author | Olaf Kirch <olaf.kirch@oracle.com> | 2007-05-09 05:32:52 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-09 15:30:46 -0400 |
commit | 98221eb757de03d9aa6262b1eded2be708640ccc (patch) | |
tree | cef3fd80f62d6227551adc75c34023d60cbaa9c1 /drivers | |
parent | 027581f3515b5ec2218847dab578afa439a9d6b9 (diff) |
dm crypt: fix avoid cloned bio ref after free
Do not access the bio after generic_make_request
We should never access a bio after generic_make_request - there's no guarantee
it still exists.
Signed-off-by: Olaf Kirch <olaf.kirch@oracle.com>
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Cc: Jens Axboe <jens.axboe@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/md/dm-crypt.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/md/dm-crypt.c b/drivers/md/dm-crypt.c index db439363f97d..1dc2c62200ee 100644 --- a/drivers/md/dm-crypt.c +++ b/drivers/md/dm-crypt.c | |||
@@ -655,9 +655,12 @@ static void process_write(struct crypt_io *io) | |||
655 | 655 | ||
656 | generic_make_request(clone); | 656 | generic_make_request(clone); |
657 | 657 | ||
658 | /* Do not reference clone after this - it | ||
659 | * may be gone already. */ | ||
660 | |||
658 | /* out of memory -> run queues */ | 661 | /* out of memory -> run queues */ |
659 | if (remaining) | 662 | if (remaining) |
660 | congestion_wait(bio_data_dir(clone), HZ/100); | 663 | congestion_wait(WRITE, HZ/100); |
661 | } | 664 | } |
662 | } | 665 | } |
663 | 666 | ||