vhost: move not SCSI specific parts to internal header

Signed-off-by: Pawel Wodkowski <pawelx.wodkowski@intel.com>
Change-Id: Id17bf80c19ab05e42db094d4901b06a9bdbe7560
Reviewed-on: https://review.gerrithub.io/363089
Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com>
Reviewed-by: Piotr Pelpliński <piotr.pelplinski@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
This commit is contained in:
Pawel Wodkowski 2017-05-26 15:24:31 +02:00 committed by Ben Walker
parent ae4796ae02
commit 329d5510e9
2 changed files with 8 additions and 7 deletions

View File

@ -43,6 +43,14 @@
#define SPDK_CACHE_LINE_SIZE RTE_CACHE_LINE_SIZE
#ifndef VHOST_USER_F_PROTOCOL_FEATURES
#define VHOST_USER_F_PROTOCOL_FEATURES 30
#endif
#ifndef VIRTIO_F_VERSION_1
#define VIRTIO_F_VERSION_1 32
#endif
#define MAX_VHOST_VRINGS 256
enum spdk_vhost_dev_type {

View File

@ -33,7 +33,6 @@
#include "spdk/stdinc.h"
#include <linux/virtio_ring.h>
#include <linux/virtio_scsi.h>
#include "spdk/env.h"
@ -46,12 +45,6 @@
#include "vhost_scsi.h"
#include "task.h"
#ifndef VIRTIO_F_VERSION_1
#define VIRTIO_F_VERSION_1 32
#endif
#define VHOST_USER_F_PROTOCOL_FEATURES 30
/* Features supported by SPDK VHOST lib. */
#define SPDK_VHOST_SCSI_FEATURES ((1ULL << VIRTIO_F_VERSION_1) | \
(1ULL << VHOST_F_LOG_ALL) | \