numam-dpdk/examples/vhost_blk/vhost_blk.h
Maxime Coquelin ab4bb42406 vhost: rename driver callbacks struct
As previously announced, this patch renames struct
vhost_device_ops to struct rte_vhost_device_ops.

Signed-off-by: Maxime Coquelin <maxime.coquelin@redhat.com>
Reviewed-by: Chenbo Xia <chenbo.xia@intel.com>
2021-11-03 11:59:27 +01:00

119 lines
2.4 KiB
C

/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2010-2017 Intel Corporation
*/
#ifndef _VHOST_BLK_H_
#define _VHOST_BLK_H_
#include <stdio.h>
#include <sys/uio.h>
#include <stdint.h>
#include <stdbool.h>
#include <linux/virtio_blk.h>
#include <linux/virtio_ring.h>
#include <rte_vhost.h>
#ifndef VIRTIO_F_RING_PACKED
#define VIRTIO_F_RING_PACKED 34
struct vring_packed_desc {
/* Buffer Address. */
__le64 addr;
/* Buffer Length. */
__le32 len;
/* Buffer ID. */
__le16 id;
/* The flags depending on descriptor type. */
__le16 flags;
};
#endif
struct vhost_blk_queue {
struct rte_vhost_vring vring;
struct rte_vhost_ring_inflight inflight_ring;
uint16_t last_avail_idx;
uint16_t last_used_idx;
uint16_t id;
bool avail_wrap_counter;
bool used_wrap_counter;
bool packed_ring;
struct vhost_blk_task *tasks;
};
#define NUM_OF_BLK_QUEUES 1
struct vhost_block_dev {
/** Unique name for this block device. */
char name[64];
/** Unique product name for this kind of block device. */
char product_name[256];
/** Size in bytes of a logical block for the backend */
uint32_t blocklen;
/** Number of blocks */
uint64_t blockcnt;
/** write cache enabled, not used at the moment */
int write_cache;
/** use memory as disk storage space */
uint8_t *data;
};
struct vhost_blk_ctrlr {
uint8_t started;
/** ID for vhost library. */
int vid;
/** Queues for the block device */
struct vhost_blk_queue queues[NUM_OF_BLK_QUEUES];
/** Only support 1 LUN for the example */
struct vhost_block_dev *bdev;
/** VM memory region */
struct rte_vhost_memory *mem;
} __rte_cache_aligned;
#define VHOST_BLK_MAX_IOVS 128
enum blk_data_dir {
BLK_DIR_NONE = 0,
BLK_DIR_TO_DEV = 1,
BLK_DIR_FROM_DEV = 2,
};
struct vhost_blk_task {
uint8_t req_idx;
uint16_t chain_num;
uint16_t inflight_idx;
uint16_t buffer_id;
uint32_t dxfer_dir;
uint32_t data_len;
struct virtio_blk_outhdr *req;
volatile uint8_t *status;
struct iovec iovs[VHOST_BLK_MAX_IOVS];
uint32_t iovs_cnt;
struct vhost_blk_queue *vq;
struct vhost_blk_ctrlr *ctrlr;
};
extern struct vhost_blk_ctrlr *g_vhost_ctrlr;
extern struct rte_vhost_device_ops vhost_blk_device_ops;
int vhost_bdev_process_blk_commands(struct vhost_block_dev *bdev,
struct vhost_blk_task *task);
void vhost_session_install_rte_compat_hooks(uint32_t vid);
void vhost_dev_install_rte_compat_hooks(const char *path);
struct vhost_blk_ctrlr *vhost_blk_ctrlr_find(const char *ctrlr_name);
#endif /* _VHOST_blk_H_ */