Skip to content

Commit

Permalink
Revert commit 1ee159f
Browse files Browse the repository at this point in the history
Revert commit 1ee159f
    Fix lock order inversion with zvol_open()...
as it did not account for use of zvols as vdevs. The latter
use cases resulted in the lock order inversion deadlocks
that involved spa_namespace_lock and bdev->bd_mutex.

Signed-off-by: Boris Protopopov <boris.protopopov@actifio.com>
  • Loading branch information
bprotopopov committed May 15, 2017
1 parent d2427f6 commit 83e86fc
Showing 1 changed file with 29 additions and 2 deletions.
31 changes: 29 additions & 2 deletions module/zfs/zvol.c
Original file line number Diff line number Diff line change
Expand Up @@ -1188,12 +1188,36 @@ static int
zvol_first_open(zvol_state_t *zv)
{
objset_t *os;
int error;
int error, locked = 0;

/*
* In all other cases the spa_namespace_lock is taken before the
* bdev->bd_mutex lock. But in this case the Linux __blkdev_get()
* function calls fops->open() with the bdev->bd_mutex lock held.
* This deadlock can be easily observed with zvols used as vdevs.
*
* To avoid a potential lock inversion deadlock we preemptively
* try to take the spa_namespace_lock(). Normally it will not
* be contended and this is safe because spa_open_common() handles
* the case where the caller already holds the spa_namespace_lock.
*
* When it is contended we risk a lock inversion if we were to
* block waiting for the lock. Luckily, the __blkdev_get()
* function allows us to return -ERESTARTSYS which will result in
* bdev->bd_mutex being dropped, reacquired, and fops->open() being
* called again. This process can be repeated safely until both
* locks are acquired.
*/
if (!mutex_owned(&spa_namespace_lock)) {
locked = mutex_tryenter(&spa_namespace_lock);
if (!locked)
return (-SET_ERROR(ERESTARTSYS));
}

/* lie and say we're read-only */
error = dmu_objset_own(zv->zv_name, DMU_OST_ZVOL, 1, zv, &os);
if (error)
return (SET_ERROR(-error));
goto out_mutex;

zv->zv_objset = os;

Expand All @@ -1204,6 +1228,9 @@ zvol_first_open(zvol_state_t *zv)
zv->zv_objset = NULL;
}

out_mutex:
if (locked)
mutex_exit(&spa_namespace_lock);
return (SET_ERROR(-error));
}

Expand Down

0 comments on commit 83e86fc

Please sign in to comment.