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