log: remove internal log.h header

There is nothing left here, so remove it.

Signed-off-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
Change-Id: Ib947d42bc577dbebb4650b1be885e05a80f8f8cf
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/4541
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Anil Veerabhadrappa <anil.veerabhadrappa@broadcom.com>
Reviewed-by: Aleksey Marchuk <alexeymar@mellanox.com>
Community-CI: Broadcom CI
This commit is contained in:
Tomasz Zawadzki 2020-10-06 12:16:26 -04:00
parent 324ebbfcb9
commit 4e8e97c886
125 changed files with 115 additions and 171 deletions

View File

@ -1,44 +0,0 @@
/*-
* 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.
*/
/**
* \file
* Logging interfaces
*/
#ifndef SPDK_INTERNAL_LOG_H
#define SPDK_INTERNAL_LOG_H
#include "spdk/log.h"
#endif /* SPDK_INTERNAL_LOG_H */

View File

@ -40,7 +40,7 @@
#include <linux/virtio_pci.h>
#include <linux/virtio_config.h>
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk/likely.h"
#include "spdk/queue.h"
#include "spdk/json.h"

View File

@ -48,7 +48,7 @@
#include "spdk/trace.h"
#include "spdk/bdev_module.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk/string.h"
#include "bdev_internal.h"

View File

@ -40,7 +40,7 @@
#include "spdk/base64.h"
#include "spdk/bdev_module.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
struct spdk_rpc_set_bdev_opts {
uint32_t bdev_io_pool_size;

View File

@ -45,7 +45,7 @@
#include "spdk/string.h"
#include "spdk_internal/assert.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "blobstore.h"

View File

@ -39,7 +39,7 @@
#include "spdk/thread.h"
#include "spdk/queue.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
void
bs_call_cpl(struct spdk_bs_cpl *cpl, int bserrno)

View File

@ -42,7 +42,7 @@
#include "spdk/assert.h"
#include "spdk/env.h"
#include "spdk/util.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk/trace.h"
#define BLOBFS_TRACE(file, str, args...) \

View File

@ -39,7 +39,7 @@
#include "spdk/queue.h"
#include "spdk/assert.h"
#include "spdk/env.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
uint32_t g_fs_cache_buffer_shift = CACHE_BUFFER_SHIFT_DEFAULT;

View File

@ -35,7 +35,7 @@
#include "spdk/crc32.h"
#include "spdk/env.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
/* Number of buffers for mempool
* Need to be power of two - 1 for better memory utilization

View File

@ -49,7 +49,7 @@
#include "spdk/likely.h"
#include "spdk/env.h"
#include "spdk/util.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "ocf_env_list.h"
#include "ocf/ocf_err.h"

View File

@ -40,7 +40,7 @@
#include "spdk/env.h"
#include "spdk/thread.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk_internal/event.h"
#include "spdk_internal/thread.h"

View File

@ -42,7 +42,6 @@
#include "spdk/rpc.h"
#include "spdk_internal/event.h"
#include "spdk_internal/log.h"
#define SPDK_DEBUG_APP_CFG(...) SPDK_DEBUGLOG(app_config, __VA_ARGS__)

View File

@ -34,7 +34,7 @@
#include "spdk/rpc.h"
#include "spdk/util.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
struct rpc_log_flag {
char *flag;

View File

@ -35,7 +35,6 @@
#include "spdk/likely.h"
#include "spdk_internal/event.h"
#include "spdk_internal/log.h"
#include "spdk_internal/thread.h"
#include "spdk/log.h"

View File

@ -37,7 +37,7 @@
#include "spdk/thread.h"
#include "spdk/bdev_module.h"
#include "spdk/string.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk/ftl.h"
#include "spdk/crc32.h"

View File

@ -38,7 +38,7 @@
#include "spdk/uuid.h"
#include "spdk/thread.h"
#include "spdk/util.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk/likely.h"
#include "spdk/queue.h"
#include "spdk/ftl.h"

View File

@ -31,7 +31,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk/ftl.h"
#include "ftl_debug.h"
#include "ftl_band.h"

View File

@ -36,7 +36,7 @@
#include "spdk/thread.h"
#include "spdk/string.h"
#include "spdk/likely.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk/ftl.h"
#include "spdk/likely.h"
#include "spdk/string.h"

View File

@ -32,7 +32,7 @@
*/
#include "spdk/likely.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk/ftl.h"
#include "ftl_reloc.h"

View File

@ -38,7 +38,7 @@
#include "spdk/util.h"
#include "spdk/memory.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk_internal/idxd.h"
#include "idxd.h"

View File

@ -39,7 +39,7 @@
#include "spdk/util.h"
#include "spdk/memory.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
struct ioat_driver {
pthread_mutex_t lock;

View File

@ -44,7 +44,7 @@
#include "spdk/sock.h"
#include "spdk/string.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "iscsi/task.h"
#include "iscsi/conn.h"

View File

@ -37,7 +37,7 @@
#include "spdk/conf.h"
#include "spdk/string.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "iscsi/iscsi.h"
#include "iscsi/init_grp.h"

View File

@ -55,7 +55,7 @@
#include "spdk/bdev.h"
#include "iscsi/portal_grp.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#define MAX_TMPBUF 1024

View File

@ -41,7 +41,7 @@
#include "spdk/rpc.h"
#include "spdk/util.h"
#include "spdk/string.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
static void
rpc_iscsi_get_initiator_groups(struct spdk_jsonrpc_request *request,

View File

@ -45,7 +45,7 @@
#include "iscsi/task.h"
#include "iscsi/tgt_node.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
struct spdk_iscsi_opts *g_spdk_iscsi_opts = NULL;

View File

@ -40,7 +40,7 @@
#include "iscsi/conn.h"
#include "spdk/string.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#define MAX_TMPBUF 1024

View File

@ -38,7 +38,7 @@
#include "spdk/sock.h"
#include "spdk/string.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "iscsi/iscsi.h"
#include "iscsi/conn.h"

View File

@ -38,7 +38,7 @@
#include "spdk/sock.h"
#include "spdk/scsi.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "iscsi/iscsi.h"
#include "iscsi/conn.h"

View File

@ -34,7 +34,7 @@
#include "spdk/json.h"
#include "spdk_internal/utf.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#define SPDK_JSON_DEBUG(...) SPDK_DEBUGLOG(json_util, __VA_ARGS__)

View File

@ -38,7 +38,7 @@
#include "spdk/jsonrpc.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#define SPDK_JSONRPC_RECV_BUF_SIZE (32 * 1024)
#define SPDK_JSONRPC_SEND_BUF_SIZE_INIT (32 * 1024)

View File

@ -33,7 +33,7 @@
#include "spdk/stdinc.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
static const char *const spdk_level_names[] = {
[SPDK_LOG_ERROR] = "ERROR",

View File

@ -33,7 +33,7 @@
#include "spdk/stdinc.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
static TAILQ_HEAD(, spdk_log_flag) g_log_flags = TAILQ_HEAD_INITIALIZER(g_log_flags);

View File

@ -32,7 +32,7 @@
*/
#include "spdk_internal/lvolstore.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk/string.h"
#include "spdk/thread.h"
#include "spdk/blob_bdev.h"

View File

@ -45,7 +45,6 @@
#include "spdk/util.h"
#include "spdk/thread.h"
#include "spdk_internal/log.h"
#include "spdk/queue.h"
#define GET_IO_LOOP_COUNT 16

View File

@ -39,7 +39,7 @@
#include <linux/nbd.h>
#include "nbd_internal.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
struct rpc_nbd_start_disk {
char *bdev_name;

View File

@ -39,7 +39,7 @@
#include "spdk/net.h"
#include "spdk/util.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
struct rpc_ip_address {
int32_t ifc_index;

View File

@ -38,7 +38,7 @@
#include "spdk/env.h"
#include "spdk/util.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
static int
notify_get_types_cb(const struct spdk_notify_type *type, void *ctx)

View File

@ -56,7 +56,7 @@
#include "spdk/uuid.h"
#include "spdk_internal/assert.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
extern pid_t g_spdk_nvme_pid;

View File

@ -31,7 +31,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "spdk/opal.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk/util.h"
#include "nvme_opal_internal.h"

View File

@ -46,7 +46,7 @@
#include "spdk/util.h"
#include "spdk/version.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#define MIN_KEEP_ALIVE_TIMEOUT_IN_MS 10000
#define NVMF_DISC_KATO_IN_MS 120000

View File

@ -47,7 +47,7 @@
#include "spdk/string.h"
#include "spdk/util.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
static bool
nvmf_subsystem_bdev_io_type_supported(struct spdk_nvmf_subsystem *subsystem,

View File

@ -45,7 +45,7 @@
#include "spdk/nvmf_spec.h"
#include "spdk/bdev_module.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
static struct spdk_nvmf_discovery_log_page *
nvmf_generate_discovery_log(struct spdk_nvmf_tgt *tgt, const char *hostnqn, size_t *log_page_size)

View File

@ -46,8 +46,6 @@
#include "spdk/log.h"
#include "spdk/thread.h"
#include "spdk_internal/log.h"
#include "nvmf_fc.h"
#include "fc_lld.h"

View File

@ -39,7 +39,7 @@
#include "spdk/trace.h"
#include "spdk/util.h"
#include "spdk/endian.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "nvmf_internal.h"
#include "transport.h"

View File

@ -42,7 +42,7 @@
#include "spdk/endian.h"
#include "spdk/string.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "nvmf_internal.h"
#include "transport.h"

View File

@ -41,7 +41,6 @@
#include "spdk/util.h"
#include "spdk/bit_array.h"
#include "spdk_internal/log.h"
#include "spdk_internal/assert.h"
#include "nvmf_internal.h"

View File

@ -42,7 +42,7 @@
#include "spdk/util.h"
#include "spdk_internal/assert.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk_internal/rdma.h"
#include "nvmf_internal.h"

View File

@ -45,7 +45,7 @@
#include "spdk/file.h"
#include "spdk/bdev_module.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk_internal/utf.h"
#define MODEL_NUMBER_DEFAULT "SPDK bdev Controller"

View File

@ -43,7 +43,7 @@
#include "spdk/util.h"
#include "spdk_internal/assert.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk_internal/nvme_tcp.h"
#include "nvmf_internal.h"

View File

@ -39,7 +39,7 @@
#include "spdk/likely.h"
#include "spdk_internal/rdma.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
struct spdk_rdma_mlx5_dv_qp {
struct spdk_rdma_qp common;

View File

@ -38,7 +38,7 @@
#include "spdk/likely.h"
#include "spdk_internal/rdma.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
struct spdk_rdma_qp *
spdk_rdma_qp_create(struct rdma_cm_id *cm_id, struct spdk_rdma_qp_init_attr *qp_attr)

View File

@ -38,7 +38,7 @@
#include "spdk/string.h"
#include "spdk/bit_array.h"
#include "spdk/util.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "libpmem.h"

View File

@ -43,7 +43,7 @@
#include "spdk/trace.h"
#include "spdk/dif.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
enum {
SPDK_SCSI_TASK_UNKNOWN = -1,

View File

@ -35,7 +35,7 @@
#include "spdk/sock.h"
#include "spdk_internal/sock.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#define SPDK_SOCK_DEFAULT_PRIORITY 0
#define SPDK_SOCK_DEFAULT_ZCOPY true

View File

@ -36,7 +36,7 @@
#include "spdk/util.h"
#include "spdk/string.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
static const struct spdk_json_object_decoder rpc_sock_impl_get_opts_decoders[] = {

View File

@ -40,7 +40,7 @@
#include "spdk/thread.h"
#include "spdk/util.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk_internal/thread.h"
#define SPDK_MSG_BATCH_SIZE 8

View File

@ -36,7 +36,6 @@
#include "spdk/env.h"
#include "spdk/trace.h"
#include "spdk/log.h"
#include "spdk_internal/log.h"
struct spdk_trace_flags *g_trace_flags = NULL;
static struct spdk_trace_register_fn *g_reg_fn_head = NULL;

View File

@ -34,7 +34,7 @@
#include "spdk/rpc.h"
#include "spdk/util.h"
#include "spdk/trace.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
struct rpc_tpoint_group {
char *name;

View File

@ -40,7 +40,7 @@
#include <rte_vhost.h>
#include "spdk_internal/vhost_user.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk/util.h"
#include "spdk/rpc.h"
#include "spdk/config.h"

View File

@ -33,7 +33,7 @@
#include "spdk/stdinc.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk/rpc.h"
#include "spdk/util.h"
#include "spdk/string.h"

View File

@ -36,7 +36,7 @@
#include "spdk/stdinc.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk_internal/virtio.h"
#include "spdk_internal/vhost_user.h"

View File

@ -38,7 +38,7 @@
#include "spdk/vmd.h"
#include "spdk/env.h"
#include "spdk/util.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "vmd_spec.h"
struct vmd_hot_plug;

View File

@ -36,7 +36,7 @@
#include "spdk/stdinc.h"
#include "spdk_internal/accel_engine.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk_internal/idxd.h"
#include "spdk/env.h"

View File

@ -36,7 +36,7 @@
#include "spdk/stdinc.h"
#include "spdk_internal/accel_engine.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk/env.h"
#include "spdk/conf.h"

View File

@ -47,7 +47,7 @@
#include "spdk/util.h"
#include "spdk/string.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include <libaio.h>

View File

@ -35,7 +35,7 @@
#include "spdk/rpc.h"
#include "spdk/util.h"
#include "spdk/string.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
struct rpc_construct_aio {
char *name;

View File

@ -44,7 +44,7 @@
#include "spdk/util.h"
#include "spdk/bdev_module.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include <rte_config.h>
#include <rte_bus_vdev.h>

View File

@ -35,7 +35,7 @@
#include "spdk/rpc.h"
#include "spdk/util.h"
#include "spdk/string.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
struct rpc_bdev_compress_get_orphans {
char *name;

View File

@ -38,7 +38,7 @@
#include "spdk/endian.h"
#include "spdk/thread.h"
#include "spdk/bdev_module.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include <rte_config.h>
#include <rte_version.h>

View File

@ -37,7 +37,7 @@
#include "spdk/rpc.h"
#include "spdk/util.h"
#include "spdk/string.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk/bdev.h"

View File

@ -43,7 +43,7 @@
#include "spdk/util.h"
#include "spdk/bdev_module.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
static int vbdev_delay_init(void);

View File

@ -36,7 +36,7 @@
#include "spdk/rpc.h"
#include "spdk/util.h"
#include "spdk/string.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk_internal/assert.h"
struct rpc_update_latency {

View File

@ -44,7 +44,7 @@
#include "spdk/string.h"
#include "spdk/bdev_module.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "vbdev_error.h"

View File

@ -36,7 +36,7 @@
#include "spdk/rpc.h"
#include "spdk/util.h"
#include "spdk/string.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "vbdev_error.h"
#define ERROR_BDEV_IO_TYPE_INVALID (SPDK_BDEV_IO_TYPE_RESET + 1)

View File

@ -42,7 +42,7 @@
#include "spdk/util.h"
#include "spdk/string.h"
#include "spdk/ftl.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "bdev_ftl.h"

View File

@ -35,7 +35,7 @@
#include "spdk/util.h"
#include "spdk/bdev_module.h"
#include "spdk/string.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "bdev_ftl.h"

View File

@ -37,7 +37,7 @@
#include "spdk/endian.h"
#include "spdk/event.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#define GPT_PRIMARY_PARTITION_TABLE_LBA 0x1
#define PRIMARY_PARTITION_NUMBER 4

View File

@ -47,7 +47,7 @@
#include "spdk/util.h"
#include "spdk/bdev_module.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
static int vbdev_gpt_init(void);
static void vbdev_gpt_examine(struct spdk_bdev *bdev);

View File

@ -44,7 +44,7 @@
#include "spdk/string.h"
#include "spdk/iscsi_spec.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk/bdev_module.h"
#include "iscsi/iscsi.h"

View File

@ -36,7 +36,7 @@
#include "spdk/util.h"
#include "spdk/string.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
struct rpc_bdev_iscsi_create {
char *name;

View File

@ -34,7 +34,7 @@
#include "spdk/blob_bdev.h"
#include "spdk/rpc.h"
#include "spdk/bdev_module.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk/string.h"
#include "spdk/uuid.h"

View File

@ -36,7 +36,7 @@
#include "spdk/util.h"
#include "vbdev_lvol.h"
#include "spdk/string.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
SPDK_LOG_REGISTER_COMPONENT(lvol_rpc)

View File

@ -45,7 +45,7 @@
#include "spdk/string.h"
#include "spdk/bdev_module.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
struct malloc_disk {
struct spdk_bdev disk;

View File

@ -36,7 +36,7 @@
#include "spdk/util.h"
#include "spdk/uuid.h"
#include "spdk/string.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
struct rpc_construct_malloc {
char *name;

View File

@ -42,7 +42,7 @@
#include "spdk/likely.h"
#include "spdk/bdev_module.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "bdev_null.h"

View File

@ -35,7 +35,7 @@
#include "spdk/util.h"
#include "spdk/string.h"
#include "spdk/bdev_module.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "bdev_null.h"

View File

@ -49,7 +49,7 @@
#include "spdk/util.h"
#include "spdk/bdev_module.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#define SPDK_BDEV_NVME_DEFAULT_DELAY_CMD_SUBMIT true

View File

@ -40,7 +40,7 @@
#include "spdk/util.h"
#include "spdk/nvme.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
struct rpc_nvme_cuse_register {
char *name;

View File

@ -42,7 +42,7 @@
#include "spdk/rpc.h"
#include "spdk/util.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk/bdev_module.h"
struct open_descriptors {

View File

@ -40,7 +40,6 @@
#include "spdk/util.h"
#include "spdk/nvme_ocssd.h"
#include "spdk/nvme_ocssd_spec.h"
#include "spdk_internal/log.h"
#include "spdk/nvme.h"
#include "common.h"
#include "bdev_ocssd.h"

View File

@ -36,7 +36,7 @@
#include "spdk/rpc.h"
#include "spdk/util.h"
#include "spdk/bdev_module.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "bdev_nvme.h"
#include "common.h"

View File

@ -34,7 +34,7 @@
#include "spdk/opal.h"
#include "spdk/bdev_module.h"
#include "vbdev_opal.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk/string.h"
/* OPAL locking range only supports operations on nsid=1 for now */

View File

@ -34,7 +34,7 @@
#include "spdk/rpc.h"
#include "spdk/util.h"
#include "spdk/string.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "vbdev_opal.h"

View File

@ -34,7 +34,7 @@
#include <execinfo.h>
#include "spdk/env.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "ctx.h"
#include "ocf_env.h"

View File

@ -45,7 +45,7 @@
#include "spdk/conf.h"
#include "spdk/thread.h"
#include "spdk/string.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk/cpuset.h"
static struct spdk_bdev_module ocf_if;

View File

@ -36,7 +36,7 @@
#include "spdk/bdev_module.h"
#include "spdk/env.h"
#include "spdk/thread.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "data.h"
#include "volume.h"

View File

@ -48,7 +48,7 @@
#include "spdk/util.h"
#include "spdk/bdev_module.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
static int vbdev_passthru_init(void);

View File

@ -35,7 +35,7 @@
#include "spdk/rpc.h"
#include "spdk/util.h"
#include "spdk/string.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
/* Structure to hold the parameters for this RPC method. */
struct rpc_bdev_passthru_create {

View File

@ -37,7 +37,7 @@
#include "spdk/util.h"
#include "spdk/rpc.h"
#include "spdk/bdev_module.h"
#include "spdk_internal/log.h"
#include "spdk/log.h"
#include "spdk/config.h"
#include "bdev_pmem.h"

Some files were not shown because too many files have changed in this diff Show More