Commit f8296a99 authored by Daniel Verkamp's avatar Daniel Verkamp
Browse files

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: default avatarDaniel Verkamp <daniel.verkamp@intel.com>
parent 68eb363b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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
+1 −1
Original line number Diff line number Diff line
@@ -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"

+1 −1
Original line number Diff line number Diff line
@@ -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)
+1 −1
Original line number Diff line number Diff line
@@ -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"
+1 −1
Original line number Diff line number Diff line
@@ -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"
Loading