From 45dd91af39b2c272dc0c84b806d6b3a046865ff8 Mon Sep 17 00:00:00 2001 From: Tomasz Zawadzki Date: Fri, 12 Jul 2019 03:44:48 -0400 Subject: [PATCH] example/perf: remove unused HAVE_URING CFLAG This patch removes HAVE_URING CFLAG that was unused by the perf.c Change-Id: I8af85324db147989e0d3b9bd48faa9587c23be06 Signed-off-by: Tomasz Zawadzki Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/461592 Tested-by: SPDK CI Jenkins Reviewed-by: Darek Stojaczyk Reviewed-by: Shuhei Matsumoto --- examples/nvme/perf/Makefile | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/examples/nvme/perf/Makefile b/examples/nvme/perf/Makefile index ef1127655..faa21d9e8 100644 --- a/examples/nvme/perf/Makefile +++ b/examples/nvme/perf/Makefile @@ -40,16 +40,6 @@ SYS_LIBS += -laio CFLAGS += -DHAVE_LIBAIO endif -ifeq ($(CONFIG_URING),y) -SYS_LIBS += -luring -CFLAGS += -DHAVE_URING -ifeq ($(strip $(CONFIG_URING_PATH)),) -else -CFLAGS += -I$(CONFIG_URING_PATH) -LDFLAGS += -L$(CONFIG_URING_PATH) -endif -endif - install: $(APP) $(INSTALL_EXAMPLE)