]> git.baikalelectronics.ru Git - kernel.git/commit
dm thin: irqsave must always be used with the pool->lock spinlock
authorJoe Thornber <ejt@redhat.com>
Tue, 8 Apr 2014 10:08:41 +0000 (11:08 +0100)
committerMike Snitzer <snitzer@redhat.com>
Tue, 8 Apr 2014 14:10:51 +0000 (10:10 -0400)
commitbd185715f3eab47828621656e9f705e8d4643762
tree3472cec2ea93f35e013a1c1997b231e16c32f264
parent26f333809554f4a4b257449c81bdc6028b27a50c
dm thin: irqsave must always be used with the pool->lock spinlock

Commit f4c950d1b6a ("dm thin: use per thin device deferred bio lists")
incorrectly stopped disabling irqs when taking the pool's spinlock.

Irqs must be disabled when taking the pool's spinlock otherwise a thread
could spin_lock(), then get interrupted to service thin_endio() in
interrupt context, which would then deadlock in spin_lock_irqsave().

Signed-off-by: Joe Thornber <ejt@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
drivers/md/dm-thin.c