File tree 2 files changed +0
-10
lines changed 2 files changed +0
-10
lines changed Original file line number Diff line number Diff line change 15
15
#define TYPE_VHOST_VDPA "vhost-vdpa"
16
16
17
17
struct vhost_net * vhost_vdpa_get_vhost_net (NetClientState * nc );
18
- uint64_t vhost_vdpa_get_acked_features (NetClientState * nc );
19
18
20
19
extern const int vdpa_feature_bits [];
21
20
Original file line number Diff line number Diff line change @@ -68,15 +68,6 @@ VHostNetState *vhost_vdpa_get_vhost_net(NetClientState *nc)
68
68
return s -> vhost_net ;
69
69
}
70
70
71
- uint64_t vhost_vdpa_get_acked_features (NetClientState * nc )
72
- {
73
- VhostVDPAState * s = DO_UPCAST (VhostVDPAState , nc , nc );
74
- assert (nc -> info -> type == NET_CLIENT_DRIVER_VHOST_VDPA );
75
- s -> acked_features = vhost_net_get_acked_features (s -> vhost_net );
76
-
77
- return s -> acked_features ;
78
- }
79
-
80
71
static int vhost_vdpa_net_check_device_id (struct vhost_net * net )
81
72
{
82
73
uint32_t device_id ;
You can’t perform that action at this time.
0 commit comments