nvmf: rename subsystem_grp.[ch] to subsystem.[ch]
NVMf does not have the concept of subsystem groups; the (former) subsystem_grp files really contain structures and functions related to individual subsystems. Change-Id: I4b3a64de799fffb29f8685ea4908d754516815cd Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
This commit is contained in:
parent
68eb363be7
commit
f8296a99c2
@ -36,7 +36,7 @@ SPDK_ROOT_DIR := $(abspath $(CURDIR)/../..)
|
||||
CFLAGS += $(DPDK_INC)
|
||||
LIBNAME = nvmf
|
||||
C_SRCS = rdma.c port.c conn.c controller.c \
|
||||
host.c subsystem_grp.c conf.c \
|
||||
host.c subsystem.c conf.c \
|
||||
nvmf.c request.c session.c
|
||||
|
||||
include $(SPDK_ROOT_DIR)/mk/spdk.lib.mk
|
||||
|
@ -36,7 +36,7 @@
|
||||
|
||||
#include "host.h"
|
||||
#include "nvmf_internal.h"
|
||||
#include "subsystem_grp.h"
|
||||
#include "subsystem.h"
|
||||
#include "spdk/log.h"
|
||||
#include "spdk/trace.h"
|
||||
|
||||
|
@ -44,7 +44,7 @@
|
||||
#include "port.h"
|
||||
#include "host.h"
|
||||
#include "rdma.h"
|
||||
#include "subsystem_grp.h"
|
||||
#include "subsystem.h"
|
||||
#include "spdk/trace.h"
|
||||
|
||||
SPDK_LOG_REGISTER_TRACE_FLAG("nvmf", SPDK_TRACE_NVMF)
|
||||
|
@ -40,7 +40,7 @@
|
||||
#include "rdma.h"
|
||||
#include "request.h"
|
||||
#include "session.h"
|
||||
#include "subsystem_grp.h"
|
||||
#include "subsystem.h"
|
||||
|
||||
#include "spdk/log.h"
|
||||
#include "spdk/nvme.h"
|
||||
|
@ -35,7 +35,7 @@
|
||||
|
||||
#include "session.h"
|
||||
#include "nvmf_internal.h"
|
||||
#include "subsystem_grp.h"
|
||||
#include "subsystem.h"
|
||||
#include "spdk/log.h"
|
||||
#include "spdk/trace.h"
|
||||
#include "spdk/nvme_spec.h"
|
||||
|
@ -38,7 +38,7 @@
|
||||
#include "host.h"
|
||||
#include "nvmf_internal.h"
|
||||
#include "session.h"
|
||||
#include "subsystem_grp.h"
|
||||
#include "subsystem.h"
|
||||
#include "spdk/log.h"
|
||||
#include "spdk/string.h"
|
||||
#include "spdk/trace.h"
|
@ -31,8 +31,8 @@
|
||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#ifndef _NVMF_SUBSYSTEM_GROUP_H_
|
||||
#define _NVMF_SUBSYSTEM_GROUP_H_
|
||||
#ifndef SPDK_NVMF_SUBSYSTEM_H
|
||||
#define SPDK_NVMF_SUBSYSTEM_H
|
||||
|
||||
#include "spdk/nvme.h"
|
||||
#include "spdk/queue.h"
|
||||
@ -91,4 +91,4 @@ spdk_shutdown_nvmf_subsystems(void);
|
||||
void
|
||||
spdk_format_discovery_log(struct spdk_nvmf_discovery_log_page *disc_log, uint32_t length);
|
||||
|
||||
#endif /* _NVMF_SUBSYSTEM_GROUP_H_ */
|
||||
#endif /* SPDK_NVMF_SUBSYSTEM_H */
|
Loading…
Reference in New Issue
Block a user