2016-06-06 21:44:30 +00:00
|
|
|
/*-
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2016-08-23 16:46:41 +00:00
|
|
|
#ifndef NVMF_TGT_H
|
|
|
|
#define NVMF_TGT_H
|
2016-06-06 21:44:30 +00:00
|
|
|
|
2017-05-02 18:18:25 +00:00
|
|
|
#include "spdk/stdinc.h"
|
2016-08-25 22:00:50 +00:00
|
|
|
|
2016-09-19 17:01:52 +00:00
|
|
|
#include "spdk/nvmf.h"
|
2016-08-25 22:00:50 +00:00
|
|
|
#include "spdk/queue.h"
|
2017-04-03 19:56:50 +00:00
|
|
|
#include "spdk/event.h"
|
2016-08-25 22:00:50 +00:00
|
|
|
|
2016-09-13 02:52:21 +00:00
|
|
|
struct rpc_listen_address {
|
|
|
|
char *transport;
|
2017-06-28 20:13:11 +00:00
|
|
|
char *adrfam;
|
2016-09-13 02:52:21 +00:00
|
|
|
char *traddr;
|
|
|
|
char *trsvcid;
|
|
|
|
};
|
|
|
|
|
2016-08-16 16:35:59 +00:00
|
|
|
struct spdk_nvmf_tgt_conf {
|
2016-09-12 17:44:58 +00:00
|
|
|
uint32_t acceptor_poll_rate;
|
2016-08-16 16:35:59 +00:00
|
|
|
};
|
|
|
|
|
2017-11-01 23:24:18 +00:00
|
|
|
enum nvmf_tgt_state {
|
|
|
|
NVMF_TGT_INIT_NONE = 0,
|
|
|
|
NVMF_TGT_INIT_PARSE_CONFIG,
|
2017-11-17 18:43:45 +00:00
|
|
|
NVMF_TGT_INIT_CREATE_POLL_GROUPS,
|
2017-12-19 23:39:04 +00:00
|
|
|
NVMF_TGT_INIT_START_SUBSYSTEMS,
|
2017-11-01 23:24:18 +00:00
|
|
|
NVMF_TGT_INIT_START_ACCEPTOR,
|
|
|
|
NVMF_TGT_RUNNING,
|
|
|
|
NVMF_TGT_FINI_STOP_ACCEPTOR,
|
2017-11-17 18:43:45 +00:00
|
|
|
NVMF_TGT_FINI_DESTROY_POLL_GROUPS,
|
2017-12-19 23:39:04 +00:00
|
|
|
NVMF_TGT_FINI_STOP_SUBSYSTEMS,
|
2017-11-01 23:24:18 +00:00
|
|
|
NVMF_TGT_FINI_FREE_RESOURCES,
|
|
|
|
NVMF_TGT_STOPPED,
|
|
|
|
NVMF_TGT_ERROR,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct nvmf_tgt {
|
|
|
|
enum nvmf_tgt_state state;
|
|
|
|
|
|
|
|
struct spdk_nvmf_tgt *tgt;
|
2017-08-30 16:36:33 +00:00
|
|
|
|
|
|
|
uint32_t core; /* Round-robin tracking of cores for qpair assignment */
|
2017-11-01 23:24:18 +00:00
|
|
|
};
|
|
|
|
|
2016-08-16 16:35:59 +00:00
|
|
|
extern struct spdk_nvmf_tgt_conf g_spdk_nvmf_tgt_conf;
|
|
|
|
|
2017-11-01 23:24:18 +00:00
|
|
|
extern struct nvmf_tgt g_tgt;
|
2017-08-18 22:38:33 +00:00
|
|
|
|
2016-08-23 16:46:41 +00:00
|
|
|
int spdk_nvmf_parse_conf(void);
|
2016-06-06 21:44:30 +00:00
|
|
|
|
2017-11-20 18:36:36 +00:00
|
|
|
struct spdk_nvmf_subsystem *nvmf_tgt_create_subsystem(const char *name,
|
|
|
|
enum spdk_nvmf_subtype subtype, uint32_t num_ns);
|
2016-09-13 02:52:21 +00:00
|
|
|
|
2017-12-19 23:39:04 +00:00
|
|
|
struct spdk_nvmf_subsystem *spdk_nvmf_construct_subsystem(const char *name,
|
|
|
|
int num_listen_addresses, struct rpc_listen_address *addresses,
|
|
|
|
int num_hosts, char *hosts[], bool allow_any_host,
|
2018-02-12 22:46:36 +00:00
|
|
|
const char *sn);
|
2016-09-13 02:52:21 +00:00
|
|
|
|
2017-04-03 19:56:50 +00:00
|
|
|
int spdk_nvmf_tgt_start(struct spdk_app_opts *opts);
|
|
|
|
|
2016-06-06 21:44:30 +00:00
|
|
|
#endif
|