5 #include "hw/virtio/vhost-backend.h"
8 typedef struct vhost_net VHostNetState
;
10 typedef struct VhostNetOptions
{
11 VhostBackendType backend_type
;
12 NetClientState
*net_backend
;
16 struct vhost_net
*vhost_net_init(VhostNetOptions
*options
);
18 int vhost_net_start(VirtIODevice
*dev
, NetClientState
*ncs
, int total_queues
);
19 void vhost_net_stop(VirtIODevice
*dev
, NetClientState
*ncs
, int total_queues
);
21 void vhost_net_cleanup(VHostNetState
*net
);
23 uint64_t vhost_net_get_features(VHostNetState
*net
, uint64_t features
);
24 void vhost_net_ack_features(VHostNetState
*net
, uint64_t features
);
26 bool vhost_net_virtqueue_pending(VHostNetState
*net
, int n
);
27 void vhost_net_virtqueue_mask(VHostNetState
*net
, VirtIODevice
*dev
,
29 VHostNetState
*get_vhost_net(NetClientState
*nc
);