From d0d89325067d0b1ddea238a63ca3828de378ce9e Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Sat, 29 Jun 2019 23:47:42 +0800 Subject: [PATCH] CMakeLists.txt: s/Remote block storage/RADOS Block Device/ RBD is short for RADOS Block Device, not Remote Block Storage. Signed-off-by: Kefu Chai --- CMakeLists.txt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5fef072a64db..096d5e247070 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -210,8 +210,7 @@ endif() find_package(Backtrace) -# remote block storage -option(WITH_RBD "Remote block storage is here" ON) +option(WITH_RBD "Enable RADOS Block Device related targets" ON) if(LINUX) find_package(udev REQUIRED) @@ -312,8 +311,7 @@ option(WITH_LIBCEPHFS "libcephfs client library" ON) # key-value store option(WITH_KVS "Key value store is here" ON) -# KERNEL remote block storage -option(WITH_KRBD "Kernel Remote block storage is here" ON) +option(WITH_KRBD "Enable Linux krbd support of 'rbd' utility" ON) if(WITH_KRBD AND NOT WITH_RBD) message(FATAL_ERROR "Cannot have WITH_KRBD without WITH_RBD.") -- 2.47.3