Commit f20727af authored by Ben Walker's avatar Ben Walker
Browse files

nvmf: Rename init_grp to host in config parsing



The code for parsing the configuration file still
referred to a host as an init_grp, so fix it.

Change-Id: Ifa250b09de495dd7d393ccc3557fd6d56a54e790
Signed-off-by: default avatarBen Walker <benjamin.walker@intel.com>
parent 32a70c1f
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -234,7 +234,7 @@ spdk_nvmf_parse_ports(void)
}

static int
spdk_nvmf_parse_init_grp(struct spdk_conf_section *sp)
spdk_nvmf_parse_host(struct spdk_conf_section *sp)
{
	int i;
	const char *mask;
@@ -280,7 +280,7 @@ spdk_nvmf_parse_init_grp(struct spdk_conf_section *sp)
}

static int
spdk_nvmf_parse_init_grps(void)
spdk_nvmf_parse_hosts(void)
{
	int rc = 0;
	struct spdk_conf_section *sp;
@@ -288,7 +288,7 @@ spdk_nvmf_parse_init_grps(void)
	sp = spdk_conf_first_section(NULL);
	while (sp != NULL) {
		if (spdk_conf_section_match_prefix(sp, "Host")) {
			rc = spdk_nvmf_parse_init_grp(sp);
			rc = spdk_nvmf_parse_host(sp);
			if (rc < 0) {
				return -1;
			}
@@ -315,8 +315,8 @@ spdk_nvmf_parse_conf(void)
		return rc;
	}

	/* Initiator Group sections */
	rc = spdk_nvmf_parse_init_grps();
	/* Host sections */
	rc = spdk_nvmf_parse_hosts();
	if (rc < 0) {
		return rc;
	}