]> www.infradead.org Git - qemu-nvme.git/commitdiff
vhost-vdpa: remove the unused vhost_vdpa_get_acked_features()
authorJason Wang <jasowang@redhat.com>
Wed, 2 Jun 2021 03:31:27 +0000 (11:31 +0800)
committerJason Wang <jasowang@redhat.com>
Fri, 11 Jun 2021 02:30:13 +0000 (10:30 +0800)
No user for this helper, let's remove it.

Signed-off-by: Jason Wang <jasowang@redhat.com>
include/net/vhost-vdpa.h
net/vhost-vdpa.c

index 45e34b7cfcf60974ba8d41bbf806da8e29a9a190..b81f9a6f2a0e27241771d6d060c22a4c89cbf701 100644 (file)
@@ -15,7 +15,6 @@
 #define TYPE_VHOST_VDPA "vhost-vdpa"
 
 struct vhost_net *vhost_vdpa_get_vhost_net(NetClientState *nc);
-uint64_t vhost_vdpa_get_acked_features(NetClientState *nc);
 
 extern const int vdpa_feature_bits[];
 
index 8b142155494ad9e276c3b699017a70f685624773..19187dce8c2583519d2e3cf7ef466fc345b99401 100644 (file)
@@ -68,15 +68,6 @@ VHostNetState *vhost_vdpa_get_vhost_net(NetClientState *nc)
     return s->vhost_net;
 }
 
-uint64_t vhost_vdpa_get_acked_features(NetClientState *nc)
-{
-    VhostVDPAState *s = DO_UPCAST(VhostVDPAState, nc, nc);
-    assert(nc->info->type == NET_CLIENT_DRIVER_VHOST_VDPA);
-    s->acked_features = vhost_net_get_acked_features(s->vhost_net);
-
-    return s->acked_features;
-}
-
 static int vhost_vdpa_net_check_device_id(struct vhost_net *net)
 {
     uint32_t device_id;