This implementation of xNVMe BDEV module supports the char-device / ioctl-over-uring, along with the "regular" io_uring, libaio, POSIX aio, emulated aio (via threadpools) etc. Code changes done : a. Addition of xNVMe submodule to SPDK b. Modification of RPC scripts to Create / Delete xNVMe BDEVs c. Implementation of xNVMe BDEV module Signed-off-by: Krishna Kanth Reddy <krish.reddy@samsung.com> Change-Id: If814ca1c784124df429d283015a6570068b44f87 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/11161 Reviewed-by: Aleksey Marchuk <alexeymar@nvidia.com> Reviewed-by: Changpeng Liu <changpeng.liu@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
36 lines
702 B
Makefile
36 lines
702 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright (c) Intel Corporation.
|
|
# All rights reserved.
|
|
#
|
|
|
|
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../..)
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
|
|
|
DIRS-y += delay error gpt lvol malloc null nvme passthru raid split zone_block
|
|
|
|
DIRS-$(CONFIG_XNVME) += xnvme
|
|
|
|
DIRS-$(CONFIG_CRYPTO) += crypto
|
|
|
|
DIRS-$(CONFIG_OCF) += ocf
|
|
|
|
DIRS-$(CONFIG_REDUCE) += compress
|
|
|
|
DIRS-$(CONFIG_URING) += uring
|
|
|
|
ifeq ($(OS),Linux)
|
|
DIRS-y += aio
|
|
DIRS-$(CONFIG_ISCSI_INITIATOR) += iscsi
|
|
DIRS-$(CONFIG_VIRTIO) += virtio
|
|
DIRS-$(CONFIG_PMDK) += pmem
|
|
endif
|
|
|
|
DIRS-$(CONFIG_RBD) += rbd
|
|
|
|
.PHONY: all clean $(DIRS-y)
|
|
|
|
all: $(DIRS-y)
|
|
clean: $(DIRS-y)
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.subdirs.mk
|