aboutsummaryrefslogtreecommitdiff
path: root/hw/virtio/vhost.c
diff options
context:
space:
mode:
authorMaxime Coquelin <maxime.coquelin@redhat.com>2018-03-29 09:52:32 +0200
committerMichael S. Tsirkin <mst@redhat.com>2018-04-09 17:35:45 +0300
commitbc6abcff7c608dba27962efa75f234c5dd10e290 (patch)
tree00f35104833ecde321337f3461ce934acc35009d /hw/virtio/vhost.c
parent0e87fdc966d05f4e5ad868034fcd8ee2a08ca62d (diff)
downloadqemu-bc6abcff7c608dba27962efa75f234c5dd10e290.zip
qemu-bc6abcff7c608dba27962efa75f234c5dd10e290.tar.gz
qemu-bc6abcff7c608dba27962efa75f234c5dd10e290.tar.bz2
vhost-user-blk: set config ops before vhost-user init
As soon as vhost-user init is done, the backend may send VHOST_USER_SLAVE_CONFIG_CHANGE_MSG, so let's set the notification callback before it. Also, it will be used to know whether the device supports the config feature to advertize it or not. Signed-off-by: Maxime Coquelin <maxime.coquelin@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Acked-by: Changpeng Liu <changpeng.liu@intel.com>
Diffstat (limited to 'hw/virtio/vhost.c')
-rw-r--r--hw/virtio/vhost.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/virtio/vhost.c b/hw/virtio/vhost.c
index 250f886..b6c314e 100644
--- a/hw/virtio/vhost.c
+++ b/hw/virtio/vhost.c
@@ -1451,7 +1451,6 @@ int vhost_dev_set_config(struct vhost_dev *hdev, const uint8_t *data,
void vhost_dev_set_config_notifier(struct vhost_dev *hdev,
const VhostDevConfigOps *ops)
{
- assert(hdev->vhost_ops);
hdev->config_ops = ops;
}