diff options
author | Olaf Kirch <olaf.kirch@oracle.com> | 2007-06-13 15:59:16 -0400 |
---|---|---|
committer | Willy Tarreau <w@1wt.eu> | 2007-08-15 10:02:29 +0200 |
commit | 12e40d6a180f668810e3706ff43e7c7186293c99 (patch) | |
tree | 022ba60344ae28e181b906c8ba8626061d83c59b /drivers | |
parent | 286f79b20a53299a588789b86f5a435bee5d40cd (diff) |
[PATCH] 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>
Signed-off-by: Chris Wright <chrisw@sous-sol.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
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 bffaf1c20ad..28831a9d867 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) generic_make_request(clone); + /* Do not reference clone after this - it + * may be gone already. */ + /* out of memory -> run queues */ if (remaining) - congestion_wait(bio_data_dir(clone), HZ/100); + congestion_wait(WRITE, HZ/100); } } |