2014-05-27 20:05:35 +08:00
|
|
|
/*
|
|
|
|
* vhost-backend
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013 Virtual Open Systems Sarl.
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef VHOST_BACKEND_H_
|
|
|
|
#define VHOST_BACKEND_H_
|
|
|
|
|
2015-10-09 23:17:24 +08:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2014-05-27 20:05:49 +08:00
|
|
|
typedef enum VhostBackendType {
|
|
|
|
VHOST_BACKEND_TYPE_NONE = 0,
|
|
|
|
VHOST_BACKEND_TYPE_KERNEL = 1,
|
|
|
|
VHOST_BACKEND_TYPE_USER = 2,
|
|
|
|
VHOST_BACKEND_TYPE_MAX = 3,
|
|
|
|
} VhostBackendType;
|
|
|
|
|
2014-05-27 20:05:35 +08:00
|
|
|
struct vhost_dev;
|
2015-10-09 23:17:26 +08:00
|
|
|
struct vhost_log;
|
2014-05-27 20:05:35 +08:00
|
|
|
|
|
|
|
typedef int (*vhost_call)(struct vhost_dev *dev, unsigned long int request,
|
|
|
|
void *arg);
|
|
|
|
typedef int (*vhost_backend_init)(struct vhost_dev *dev, void *opaque);
|
|
|
|
typedef int (*vhost_backend_cleanup)(struct vhost_dev *dev);
|
2015-09-23 12:19:59 +08:00
|
|
|
typedef int (*vhost_backend_get_vq_index)(struct vhost_dev *dev, int idx);
|
2015-09-23 12:20:01 +08:00
|
|
|
typedef int (*vhost_backend_set_vring_enable)(struct vhost_dev *dev, int enable);
|
2015-10-06 16:37:27 +08:00
|
|
|
typedef int (*vhost_backend_memslots_limit)(struct vhost_dev *dev);
|
2014-05-27 20:05:35 +08:00
|
|
|
|
2015-10-09 23:17:26 +08:00
|
|
|
typedef int (*vhost_set_log_base_op)(struct vhost_dev *dev, uint64_t base,
|
|
|
|
struct vhost_log *log);
|
2015-10-09 23:17:24 +08:00
|
|
|
typedef bool (*vhost_requires_shm_log_op)(struct vhost_dev *dev);
|
2015-10-09 23:17:23 +08:00
|
|
|
|
2014-05-27 20:05:35 +08:00
|
|
|
typedef struct VhostOps {
|
2014-05-27 20:05:49 +08:00
|
|
|
VhostBackendType backend_type;
|
2014-05-27 20:05:35 +08:00
|
|
|
vhost_call vhost_call;
|
|
|
|
vhost_backend_init vhost_backend_init;
|
|
|
|
vhost_backend_cleanup vhost_backend_cleanup;
|
2015-09-23 12:19:59 +08:00
|
|
|
vhost_backend_get_vq_index vhost_backend_get_vq_index;
|
2015-09-23 12:20:01 +08:00
|
|
|
vhost_backend_set_vring_enable vhost_backend_set_vring_enable;
|
2015-10-06 16:37:27 +08:00
|
|
|
vhost_backend_memslots_limit vhost_backend_memslots_limit;
|
2015-10-09 23:17:23 +08:00
|
|
|
vhost_set_log_base_op vhost_set_log_base;
|
2015-10-09 23:17:24 +08:00
|
|
|
vhost_requires_shm_log_op vhost_requires_shm_log;
|
2014-05-27 20:05:35 +08:00
|
|
|
} VhostOps;
|
|
|
|
|
2014-07-08 03:13:27 +08:00
|
|
|
extern const VhostOps user_ops;
|
|
|
|
|
2014-05-27 20:05:49 +08:00
|
|
|
int vhost_set_backend_type(struct vhost_dev *dev,
|
|
|
|
VhostBackendType backend_type);
|
|
|
|
|
2014-05-27 20:05:35 +08:00
|
|
|
#endif /* VHOST_BACKEND_H_ */
|