diff options
author | Yuanhan Liu | 2015-09-23 06:19:57 +0200 |
---|---|---|
committer | Michael S. Tsirkin | 2015-09-24 15:27:52 +0200 |
commit | d1f8b30ec8dde0318fd1b98d24a64926feae9625 (patch) | |
tree | 2d0bddbc0c7980cb974c79fb9c7d1116d70a7a06 /hw/net/vhost_net.c | |
parent | vhost-user: add protocol feature negotiation (diff) | |
download | qemu-d1f8b30ec8dde0318fd1b98d24a64926feae9625.tar.gz qemu-d1f8b30ec8dde0318fd1b98d24a64926feae9625.tar.xz qemu-d1f8b30ec8dde0318fd1b98d24a64926feae9625.zip |
vhost: rename VHOST_RESET_OWNER to VHOST_RESET_DEVICE
Quote from Michael:
We really should rename VHOST_RESET_OWNER to VHOST_RESET_DEVICE.
Suggested-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
Reviewed-by: Marcel Apfelbaum <marcel@redhat.com>
Tested-by: Marcel Apfelbaum <marcel@redhat.com>
Diffstat (limited to 'hw/net/vhost_net.c')
-rw-r--r-- | hw/net/vhost_net.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/net/vhost_net.c b/hw/net/vhost_net.c index 9d32d76abb..b7d29b7cf4 100644 --- a/hw/net/vhost_net.c +++ b/hw/net/vhost_net.c @@ -287,7 +287,7 @@ static void vhost_net_stop_one(struct vhost_net *net, } else if (net->nc->info->type == NET_CLIENT_OPTIONS_KIND_VHOST_USER) { for (file.index = 0; file.index < net->dev.nvqs; ++file.index) { const VhostOps *vhost_ops = net->dev.vhost_ops; - int r = vhost_ops->vhost_call(&net->dev, VHOST_RESET_OWNER, + int r = vhost_ops->vhost_call(&net->dev, VHOST_RESET_DEVICE, NULL); assert(r >= 0); } |