TP4146 introduced support for flexible data placement, which is a data placement directive. This application will test the new I/O management commands, write with directives, log pages and set/get features. Signed-off-by: Ankit Kumar <ankit.kumar@samsung.com> Change-Id: I2d68625d9a180afb5a6e85e59738c2713ce965a8 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/16521 Reviewed-by: Shuhei Matsumoto <smatsumoto@nvidia.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Michal Berger <michal.berger@intel.com>
20 lines
497 B
Makefile
20 lines
497 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright (C) 2015 Intel Corporation.
|
|
# All rights reserved.
|
|
#
|
|
|
|
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../..)
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
|
|
|
DIRS-y = aer reset sgl e2edp overhead err_injection \
|
|
startup reserve simple_copy connect_stress boot_partition \
|
|
compliance fused_ordering doorbell_aers fdp
|
|
DIRS-$(CONFIG_NVME_CUSE) += cuse
|
|
|
|
.PHONY: all clean $(DIRS-y)
|
|
|
|
all: $(DIRS-y)
|
|
clean: $(DIRS-y)
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.subdirs.mk
|