nvmf: Rename init_grp.h/c to host.h/c

Match the names in the specification.

Change-Id: Ic3f95220efea4dfbdf209af43db20da26ae232b6
Signed-off-by: Ben Walker <benjamin.walker@intel.com>
This commit is contained in:
Ben Walker 2016-06-08 16:15:04 -07:00
parent 422b147499
commit dc6a0a2bd2
8 changed files with 10 additions and 10 deletions

View File

@ -47,7 +47,7 @@
#include "nvmf/conn.h"
#include "nvmf/rdma.h"
#include "nvmf/port.h"
#include "nvmf/init_grp.h"
#include "nvmf/host.h"
#include "nvmf/nvmf.h"
#include "spdk/log.h"

View File

@ -37,7 +37,7 @@ CFLAGS += $(DPDK_INC)
LIBNAME = nvmf
C_SRCS = nvmf_admin_cmd.c nvmf_io_cmd.c \
rdma.c port.c conn.c controller.c \
init_grp.c subsystem_grp.c conf.c \
host.c subsystem_grp.c conf.c \
nvmf.c session.c
include $(SPDK_ROOT_DIR)/mk/spdk.lib.mk

View File

@ -35,7 +35,7 @@
#include <string.h>
#include "conf.h"
#include "init_grp.h"
#include "host.h"
#include "nvmf_internal.h"
#include "port.h"
#include "spdk/conf.h"

View File

@ -34,7 +34,7 @@
#include <arpa/inet.h>
#include <string.h>
#include "init_grp.h"
#include "host.h"
#include "nvmf_internal.h"
#include "subsystem_grp.h"
#include "spdk/log.h"

View File

@ -31,8 +31,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef NVMF_INIT_GRP_H
#define NVMF_INIT_GRP_H
#ifndef NVMF_HOST_H
#define NVMF_HOST_H
#include "spdk/queue.h"
#include "port.h" // For enum group_state
@ -61,4 +61,4 @@ spdk_nvmf_host_find_by_addr(char *addr);
void
spdk_nvmf_host_destroy_all(void);
#endif /* NVMF_INIT_GRP_H */
#endif

View File

@ -43,7 +43,7 @@
#include "conn.h"
#include "controller.h"
#include "port.h"
#include "init_grp.h"
#include "host.h"
#include "rdma.h"
#include "subsystem_grp.h"
#include "spdk/trace.h"

View File

@ -48,7 +48,7 @@
#include "rdma.h"
#include "nvmf.h"
#include "port.h"
#include "init_grp.h"
#include "host.h"
#include "spdk/log.h"
#include "spdk/trace.h"

View File

@ -35,7 +35,7 @@
#include "controller.h"
#include "port.h"
#include "init_grp.h"
#include "host.h"
#include "nvmf_internal.h"
#include "nvmf.h"
#include "session.h"