diff options
author | Jason Wang <jasowang@redhat.com> | 2021-09-03 17:10:11 +0800 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2021-09-04 17:34:05 -0400 |
commit | 12021b53a42301915dfd27081b4b43370787fe38 (patch) | |
tree | 94669e3c633fdc45f189e3336a28130666934bcf /net | |
parent | 6b3dc992592db5f8a5c1a1c9bdf4a9973d062e7b (diff) | |
download | qemu-12021b53a42301915dfd27081b4b43370787fe38.zip qemu-12021b53a42301915dfd27081b4b43370787fe38.tar.gz qemu-12021b53a42301915dfd27081b4b43370787fe38.tar.bz2 |
vhost-vdpa: remove unused variable "acked_features"
"acked_features" is unused, let's remove that.
Signed-off-by: Jason Wang <jasowang@redhat.com>
Message-Id: <20210903091031.47303-2-jasowang@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/vhost-vdpa.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/vhost-vdpa.c b/net/vhost-vdpa.c index 19187dc..7282988 100644 --- a/net/vhost-vdpa.c +++ b/net/vhost-vdpa.c @@ -29,7 +29,6 @@ typedef struct VhostVDPAState { NetClientState nc; struct vhost_vdpa vhost_vdpa; VHostNetState *vhost_net; - uint64_t acked_features; bool started; } VhostVDPAState; |