2010-03-17 11:08:17 +00:00
|
|
|
#ifndef VHOST_NET_H
|
|
|
|
#define VHOST_NET_H
|
|
|
|
|
2012-10-24 06:43:34 +00:00
|
|
|
#include "net/net.h"
|
2010-03-17 11:08:17 +00:00
|
|
|
|
|
|
|
struct vhost_net;
|
|
|
|
typedef struct vhost_net VHostNetState;
|
|
|
|
|
2012-07-24 15:35:13 +00:00
|
|
|
VHostNetState *vhost_net_init(NetClientState *backend, int devfd, bool force);
|
2010-03-17 11:08:17 +00:00
|
|
|
|
2011-02-01 20:13:42 +00:00
|
|
|
bool vhost_net_query(VHostNetState *net, VirtIODevice *dev);
|
2013-01-30 11:12:35 +00: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 11:08:17 +00: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 15:37:01 +00: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 11:08:17 +00:00
|
|
|
#endif
|