aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/vhost/net.c
diff options
context:
space:
mode:
author夷则(Caspar) <jinli.zjl@alibaba-inc.com>2017-12-25 00:08:58 +0800
committerMichael S. Tsirkin <mst@redhat.com>2018-02-01 16:26:44 +0200
commitf6f93f75afb65997f4a84aaaab59dd06a4a06c80 (patch)
treeff77df0fee712020bb80c417650389cf4f037a6e /drivers/vhost/net.c
parentvhost: Remove the unused variable. (diff)
downloadlinux-dev-f6f93f75afb65997f4a84aaaab59dd06a4a06c80.tar.xz
linux-dev-f6f93f75afb65997f4a84aaaab59dd06a4a06c80.zip
vhost: remove unused lock check flag in vhost_dev_cleanup()
In commit ea5d404655ba ("vhost: fix release path lockdep checks"), Michael added a flag to check whether we should hold a lock in vhost_dev_cleanup(), however, in commit 47283bef7ed3 ("vhost: move memory pointer to VQs"), RCU operations have been replaced by mutex, we can remove the no-longer-used `locked' parameter now. Signed-off-by: Caspar Zhang <jinli.zjl@alibaba-inc.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'drivers/vhost/net.c')
-rw-r--r--drivers/vhost/net.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/vhost/net.c b/drivers/vhost/net.c
index c7bdeb655646..a354d8d731e3 100644
--- a/drivers/vhost/net.c
+++ b/drivers/vhost/net.c
@@ -996,7 +996,7 @@ static int vhost_net_release(struct inode *inode, struct file *f)
vhost_net_stop(n, &tx_sock, &rx_sock);
vhost_net_flush(n);
vhost_dev_stop(&n->dev);
- vhost_dev_cleanup(&n->dev, false);
+ vhost_dev_cleanup(&n->dev);
vhost_net_vq_reset(n);
if (tx_sock)
sockfd_put(tx_sock);