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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __NVMF_INTERNAL_H__
|
|
|
|
#define __NVMF_INTERNAL_H__
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "spdk/nvmf_spec.h"
|
|
|
|
#include "spdk/assert.h"
|
|
|
|
#include "spdk/queue.h"
|
|
|
|
|
2016-06-08 20:36:53 +00:00
|
|
|
#define SPDK_NVMF_DEFAULT_NUM_SESSIONS_PER_LCORE 1
|
|
|
|
|
2017-01-19 18:55:56 +00:00
|
|
|
struct spdk_nvmf_tgt {
|
2016-07-25 21:22:58 +00:00
|
|
|
uint16_t max_queue_depth;
|
|
|
|
uint16_t max_queues_per_session;
|
|
|
|
|
|
|
|
uint32_t in_capsule_data_size;
|
|
|
|
uint32_t max_io_size;
|
2016-06-08 20:19:48 +00:00
|
|
|
};
|
|
|
|
|
2016-07-25 21:22:58 +00:00
|
|
|
static inline uint32_t
|
|
|
|
nvmf_u32log2(uint32_t x)
|
|
|
|
{
|
|
|
|
if (x == 0) {
|
|
|
|
/* __builtin_clz(0) is undefined, so just bail */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 31u - __builtin_clz(x);
|
|
|
|
}
|
2016-06-08 20:47:54 +00:00
|
|
|
|
2017-01-19 18:55:56 +00:00
|
|
|
extern struct spdk_nvmf_tgt g_nvmf_tgt;
|
2016-06-08 20:19:48 +00:00
|
|
|
|
2017-02-02 16:44:26 +00:00
|
|
|
struct spdk_nvmf_listen_addr *spdk_nvmf_listen_addr_create(const char *trname, const char *traddr,
|
|
|
|
const char *trsvcid);
|
2017-01-19 18:17:16 +00:00
|
|
|
void spdk_nvmf_listen_addr_destroy(struct spdk_nvmf_listen_addr *addr);
|
|
|
|
|
2017-01-19 18:33:46 +00:00
|
|
|
#define OBJECT_NVMF_IO 0x30
|
|
|
|
|
|
|
|
#define TRACE_GROUP_NVMF 0x3
|
|
|
|
#define TRACE_NVMF_IO_START SPDK_TPOINT_ID(TRACE_GROUP_NVMF, 0x0)
|
|
|
|
#define TRACE_RDMA_READ_START SPDK_TPOINT_ID(TRACE_GROUP_NVMF, 0x1)
|
|
|
|
#define TRACE_RDMA_WRITE_START SPDK_TPOINT_ID(TRACE_GROUP_NVMF, 0x2)
|
|
|
|
#define TRACE_RDMA_READ_COMPLETE SPDK_TPOINT_ID(TRACE_GROUP_NVMF, 0x3)
|
|
|
|
#define TRACE_RDMA_WRITE_COMPLETE SPDK_TPOINT_ID(TRACE_GROUP_NVMF, 0x4)
|
|
|
|
#define TRACE_NVMF_LIB_READ_START SPDK_TPOINT_ID(TRACE_GROUP_NVMF, 0x5)
|
|
|
|
#define TRACE_NVMF_LIB_WRITE_START SPDK_TPOINT_ID(TRACE_GROUP_NVMF, 0x6)
|
|
|
|
#define TRACE_NVMF_LIB_COMPLETE SPDK_TPOINT_ID(TRACE_GROUP_NVMF, 0x7)
|
|
|
|
#define TRACE_NVMF_IO_COMPLETE SPDK_TPOINT_ID(TRACE_GROUP_NVMF, 0x8)
|
|
|
|
|
2016-06-06 21:44:30 +00:00
|
|
|
#endif /* __NVMF_INTERNAL_H__ */
|