/*- * BSD LICENSE * * Copyright (c) Intel Corporation. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * Neither the name of Intel Corporation nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef _NVMF_SUBSYSTEM_GROUP_H_ #define _NVMF_SUBSYSTEM_GROUP_H_ #include "spdk/nvme.h" #include "spdk/queue.h" struct spdk_nvmf_conn; #define MAX_PER_SUBSYSTEM_ACCESS_MAP 2 #define MAX_PER_SUBSYSTEM_NAMESPACES 32 #define MAX_NQN_SIZE 255 struct spdk_nvmf_namespace { int nvme_ns_id; struct spdk_nvme_ns *ns; struct spdk_nvme_ctrlr *ctrlr; struct spdk_nvme_qpair *qpair; }; /* * The NVMf subsystem, as indicated in the specification, is a collection * of virtual controller sessions. Any individual controller session has * access to all the NVMe device/namespaces maintained by the subsystem. */ struct spdk_nvmf_subsystem { uint16_t num; char subnqn[MAX_NQN_SIZE]; int num_sessions; TAILQ_HEAD(session_q, nvmf_session) sessions; struct spdk_nvmf_namespace ns_list_map[MAX_PER_SUBSYSTEM_NAMESPACES]; int ns_count; TAILQ_ENTRY(spdk_nvmf_subsystem) entries; }; struct spdk_nvmf_access_map { struct spdk_nvmf_port *port; struct spdk_nvmf_init_grp *ig; }; struct spdk_nvmf_subsystem_grp { int num; char *name;; struct spdk_nvmf_subsystem *subsystem; int map_count; struct spdk_nvmf_access_map map[MAX_PER_SUBSYSTEM_ACCESS_MAP]; TAILQ_ENTRY(spdk_nvmf_subsystem_grp) tailq; }; struct spdk_nvmf_subsystem * nvmf_create_subsystem(int num, char *name); int nvmf_delete_subsystem(struct spdk_nvmf_subsystem *subsystem); int nvmf_subsystem_add_ns(struct spdk_nvmf_subsystem *subsystem, struct spdk_nvme_ctrlr *ctrlr); struct spdk_nvmf_subsystem * nvmf_find_subsystem(const char *subnqn); int spdk_initialize_nvmf_subsystems(void); int spdk_shutdown_nvmf_subsystems(void); #endif /* _NVMF_SUBSYSTEM_GROUP_H_ */