Skip to content

Commit e9cb423

Browse files
jasowangdavem330
authored andcommitted
vhost: use mutex_lock_nested() in vhost_dev_lock_vqs()
We used to call mutex_lock() in vhost_dev_lock_vqs() which tries to hold mutexes of all virtqueues. This may confuse lockdep to report a possible deadlock because of trying to hold locks belong to same class. Switch to use mutex_lock_nested() to avoid false positive. Fixes: 6b1e6cc ("vhost: new device IOTLB API") Reported-by: syzbot+dbb7c1161485e61b0241@syzkaller.appspotmail.com Signed-off-by: Jason Wang <jasowang@redhat.com> Acked-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent b7051cb commit e9cb423

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/vhost/vhost.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -904,7 +904,7 @@ static void vhost_dev_lock_vqs(struct vhost_dev *d)
904904
{
905905
int i = 0;
906906
for (i = 0; i < d->nvqs; ++i)
907-
mutex_lock(&d->vqs[i]->mutex);
907+
mutex_lock_nested(&d->vqs[i]->mutex, i);
908908
}
909909

910910
static void vhost_dev_unlock_vqs(struct vhost_dev *d)

0 commit comments

Comments
 (0)