提交 98221eb7 编写于 作者: O Olaf Kirch 提交者: Linus Torvalds

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: NOlaf Kirch <olaf.kirch@oracle.com>
Signed-off-by: NAlasdair G Kergon <agk@redhat.com>
Cc: Jens Axboe <jens.axboe@oracle.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 027581f3
......@@ -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);
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册