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"
|
2010-03-17 12:08:17 +01:00
|
|
|
|
|
|
|
struct vhost_net;
|
|
|
|
typedef struct vhost_net VHostNetState;
|
|
|
|
|
2012-07-24 17:35:13 +02:00
|
|
|
VHostNetState *vhost_net_init(NetClientState *backend, int devfd, bool force);
|
2010-03-17 12:08:17 +01:00
|
|
|
|
2011-02-01 21:13:42 +01:00
|
|
|
bool vhost_net_query(VHostNetState *net, VirtIODevice *dev);
|
2013-01-30 12:12:35 +01:00
|
|
|
int vhost_net_start(VirtIODevice *dev, NetClientState *ncs, int total_queues);
|
|
|
|
void vhost_net_stop(VirtIODevice *dev, NetClientState *ncs, int total_queues);
|
2010-03-17 12:08:17 +01:00
|
|
|
|
|
|
|
void vhost_net_cleanup(VHostNetState *net);
|
|
|
|
|
|
|
|
unsigned vhost_net_get_features(VHostNetState *net, unsigned features);
|
|
|
|
void vhost_net_ack_features(VHostNetState *net, unsigned features);
|
|
|
|
|
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);
|
2010-03-17 12:08:17 +01:00
|
|
|
#endif
|