2010-03-17 14:08:17 +03:00
|
|
|
#ifndef VHOST_NET_H
|
|
|
|
#define VHOST_NET_H
|
|
|
|
|
2012-10-24 10:43:34 +04:00
|
|
|
#include "net/net.h"
|
2014-05-27 16:05:49 +04:00
|
|
|
#include "hw/virtio/vhost-backend.h"
|
2010-03-17 14:08:17 +03:00
|
|
|
|
2018-03-02 12:04:44 +03:00
|
|
|
#define VHOST_NET_INIT_FAILED \
|
|
|
|
"vhost-net requested but could not be initialized"
|
|
|
|
|
2010-03-17 14:08:17 +03:00
|
|
|
struct vhost_net;
|
|
|
|
typedef struct vhost_net VHostNetState;
|
|
|
|
|
2014-05-27 16:05:22 +04:00
|
|
|
typedef struct VhostNetOptions {
|
2014-05-27 16:05:49 +04:00
|
|
|
VhostBackendType backend_type;
|
2014-05-27 16:05:22 +04:00
|
|
|
NetClientState *net_backend;
|
2016-07-06 04:57:55 +03:00
|
|
|
uint32_t busyloop_timeout;
|
2021-09-03 12:10:15 +03:00
|
|
|
unsigned int nvqs;
|
2014-05-27 16:05:22 +04:00
|
|
|
void *opaque;
|
|
|
|
} VhostNetOptions;
|
|
|
|
|
2015-09-23 07:19:58 +03:00
|
|
|
uint64_t vhost_net_get_max_queues(VHostNetState *net);
|
2014-05-27 16:05:22 +04:00
|
|
|
struct vhost_net *vhost_net_init(VhostNetOptions *options);
|
2010-03-17 14:08:17 +03:00
|
|
|
|
2021-10-20 07:55:56 +03:00
|
|
|
int vhost_net_start(VirtIODevice *dev, NetClientState *ncs,
|
|
|
|
int data_queue_pairs, int cvq);
|
|
|
|
void vhost_net_stop(VirtIODevice *dev, NetClientState *ncs,
|
|
|
|
int data_queue_pairs, int cvq);
|
2010-03-17 14:08:17 +03:00
|
|
|
|
|
|
|
void vhost_net_cleanup(VHostNetState *net);
|
|
|
|
|
2015-06-04 13:34:20 +03:00
|
|
|
uint64_t vhost_net_get_features(VHostNetState *net, uint64_t features);
|
|
|
|
void vhost_net_ack_features(VHostNetState *net, uint64_t features);
|
2010-03-17 14:08:17 +03:00
|
|
|
|
2020-07-01 17:55:36 +03:00
|
|
|
int vhost_net_get_config(struct vhost_net *net, uint8_t *config,
|
|
|
|
uint32_t config_len);
|
|
|
|
|
|
|
|
int vhost_net_set_config(struct vhost_net *net, const uint8_t *data,
|
|
|
|
uint32_t offset, uint32_t size, uint32_t flags);
|
2012-12-24 19:37:01 +04:00
|
|
|
bool vhost_net_virtqueue_pending(VHostNetState *net, int n);
|
|
|
|
void vhost_net_virtqueue_mask(VHostNetState *net, VirtIODevice *dev,
|
|
|
|
int idx, bool mask);
|
2022-12-22 10:04:49 +03:00
|
|
|
bool vhost_net_config_pending(VHostNetState *net);
|
|
|
|
void vhost_net_config_mask(VHostNetState *net, VirtIODevice *dev, bool mask);
|
2015-10-09 18:17:32 +03:00
|
|
|
int vhost_net_notify_migration_done(VHostNetState *net, char* mac_addr);
|
2014-05-27 16:05:08 +04:00
|
|
|
VHostNetState *get_vhost_net(NetClientState *nc);
|
2015-09-23 07:20:01 +03:00
|
|
|
|
|
|
|
int vhost_set_vring_enable(NetClientState * nc, int enable);
|
2016-06-06 19:45:05 +03:00
|
|
|
|
|
|
|
uint64_t vhost_net_get_acked_features(VHostNetState *net);
|
|
|
|
|
2016-12-10 18:30:37 +03:00
|
|
|
int vhost_net_set_mtu(struct vhost_net *net, uint16_t mtu);
|
|
|
|
|
2022-10-17 12:25:52 +03:00
|
|
|
void vhost_net_virtqueue_reset(VirtIODevice *vdev, NetClientState *nc,
|
|
|
|
int vq_index);
|
2022-10-17 12:25:53 +03:00
|
|
|
int vhost_net_virtqueue_restart(VirtIODevice *vdev, NetClientState *nc,
|
|
|
|
int vq_index);
|
2022-12-21 16:06:40 +03:00
|
|
|
|
|
|
|
void vhost_net_save_acked_features(NetClientState *nc);
|
2010-03-17 14:08:17 +03:00
|
|
|
#endif
|