From 4913ed4dc5b605ba90a74dcbc9fdeef6e6edf0ae Mon Sep 17 00:00:00 2001 From: yidong0635 Date: Mon, 10 Jun 2019 09:59:42 -0400 Subject: [PATCH] bdev: add uring in bdev Makefile We had "./configure --with-uring" , but actually, it wasn't compiled. we need add uring to Makefile that code will add this. then we can continue to verify this module. Change-Id: I8b98825f6795eb9f9e7b4947d1c7c3a44a6f0f64 Signed-off-by: yidong0635 Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/457081 Tested-by: SPDK CI Jenkins Reviewed-by: Darek Stojaczyk Reviewed-by: Ben Walker Reviewed-by: Changpeng Liu --- lib/bdev/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/bdev/Makefile b/lib/bdev/Makefile index c560cecb0..1288bea17 100644 --- a/lib/bdev/Makefile +++ b/lib/bdev/Makefile @@ -58,6 +58,10 @@ ifeq ($(CONFIG_REDUCE),y) DIRS-y += compress endif +ifeq ($(CONFIG_URING),y) +DIRS-y += uring +endif + ifeq ($(OS),Linux) DIRS-y += aio DIRS-$(CONFIG_ISCSI_INITIATOR) += iscsi