diff options
author | Stefan Hajnoczi <stefanha@redhat.com> | 2020-09-24 16:15:42 +0100 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2020-10-23 13:42:16 +0100 |
commit | 47ba680466d83adfa8c58620d4f5855c0de1a144 (patch) | |
tree | e554615e6dc7c6537d3782b73dc7c015a43955e0 /util/vhost-user-server.c | |
parent | df6af7ce77447be89e0d054dc06fb496ec4e69b4 (diff) | |
download | qemu-47ba680466d83adfa8c58620d4f5855c0de1a144.zip qemu-47ba680466d83adfa8c58620d4f5855c0de1a144.tar.gz qemu-47ba680466d83adfa8c58620d4f5855c0de1a144.tar.bz2 |
util/vhost-user-server: drop unused DevicePanicNotifier
The device panic notifier callback is not used. Drop it.
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-id: 20200924151549.913737-7-stefanha@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'util/vhost-user-server.c')
-rw-r--r-- | util/vhost-user-server.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/util/vhost-user-server.c b/util/vhost-user-server.c index 6efe227..73a1667 100644 --- a/util/vhost-user-server.c +++ b/util/vhost-user-server.c @@ -81,10 +81,6 @@ static void panic_cb(VuDev *vu_dev, const char *buf) close_client(server); } - if (server->device_panic_notifier) { - server->device_panic_notifier(server); - } - /* * Set the callback function for network listener so another * vhost-user client can connect to this server @@ -385,7 +381,6 @@ bool vhost_user_server_start(VuServer *server, SocketAddress *socket_addr, AioContext *ctx, uint16_t max_queues, - DevicePanicNotifierFn *device_panic_notifier, const VuDevIface *vu_iface, Error **errp) { @@ -402,7 +397,6 @@ bool vhost_user_server_start(VuServer *server, .vu_iface = vu_iface, .max_queues = max_queues, .ctx = ctx, - .device_panic_notifier = device_panic_notifier, }; qio_net_listener_set_name(server->listener, "vhost-user-backend-listener"); |