]> git.baikalelectronics.ru Git - kernel.git/commit
dm verity: avoid deadlock
authorMikulas Patocka <mpatocka@redhat.com>
Wed, 20 Mar 2013 17:21:25 +0000 (17:21 +0000)
committerAlasdair G Kergon <agk@redhat.com>
Wed, 20 Mar 2013 17:21:25 +0000 (17:21 +0000)
commitdb38e177da6605c1b278b56aec00ef4e62a6ca18
tree3da28b7a3cf8b79b7c48b3875b8483c9de2b2060
parent97d9d7a3f7f47fa988d81fd54494eb511fe9b270
dm verity: avoid deadlock

A deadlock was found in the prefetch code in the dm verity map
function.  This patch fixes this by transferring the prefetch
to a worker thread and skipping it completely if kmalloc fails.

If generic_make_request is called recursively, it queues the I/O
request on the current->bio_list without making the I/O request
and returns. The routine making the recursive call cannot wait
for the I/O to complete.

The deadlock occurs when one thread grabs the bufio_client
mutex and waits for an I/O to complete but the I/O is queued
on another thread's current->bio_list and is waiting to get
the mutex held by the first thread.

The fix recognises that prefetching is not essential.  If memory
can be allocated, it queues the prefetch request to the worker thread,
but if not, it does nothing.

Signed-off-by: Paul Taysom <taysom@chromium.org>
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Cc: stable@kernel.org
drivers/md/dm-bufio.c
drivers/md/dm-verity.c