FTL: Add FTL bdev module
Signed-off-by: Kozlowski Mateusz <mateusz.kozlowski@intel.com> Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com> Change-Id: I8c40b96f0726d83d6a307e8b9a04b7c210b80255 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/13299 Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
This commit is contained in:
parent
17147949cf
commit
c682c78992
@ -103,6 +103,30 @@ void spdk_ftl_dev_get_attrs(const struct spdk_ftl_dev *dev, struct spdk_ftl_attr
|
|||||||
*/
|
*/
|
||||||
void spdk_ftl_dev_get_conf(const struct spdk_ftl_dev *dev, struct spdk_ftl_conf *conf);
|
void spdk_ftl_dev_get_conf(const struct spdk_ftl_dev *dev, struct spdk_ftl_conf *conf);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Obtain an I/O channel for the device.
|
||||||
|
*
|
||||||
|
* \param dev device
|
||||||
|
*
|
||||||
|
* \return A handle to the I/O channel or NULL on failure.
|
||||||
|
*/
|
||||||
|
struct spdk_io_channel *spdk_ftl_get_io_channel(struct spdk_ftl_dev *dev);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Make a deep copy of an FTL configuration structure
|
||||||
|
*
|
||||||
|
* \param dst The destination FTL configuration
|
||||||
|
* \param src The source FTL configuration
|
||||||
|
*/
|
||||||
|
int spdk_ftl_conf_copy(struct spdk_ftl_conf *dst, const struct spdk_ftl_conf *src);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Release the FTL configuration resources. This does not free the structure itself.
|
||||||
|
*
|
||||||
|
* \param conf FTL configuration to deinitialize
|
||||||
|
*/
|
||||||
|
void spdk_ftl_conf_deinit(struct spdk_ftl_conf *conf);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialize FTL configuration structure with default values.
|
* Initialize FTL configuration structure with default values.
|
||||||
*
|
*
|
||||||
|
@ -55,4 +55,10 @@ ftl_core_poller(void *ctx)
|
|||||||
return SPDK_POLLER_IDLE;
|
return SPDK_POLLER_IDLE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct spdk_io_channel *
|
||||||
|
spdk_ftl_get_io_channel(struct spdk_ftl_dev *dev)
|
||||||
|
{
|
||||||
|
return spdk_get_io_channel(dev);
|
||||||
|
}
|
||||||
|
|
||||||
SPDK_LOG_REGISTER_COMPONENT(ftl_core)
|
SPDK_LOG_REGISTER_COMPONENT(ftl_core)
|
||||||
|
@ -84,7 +84,7 @@ free_dev(struct spdk_ftl_dev *dev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
deinit_core_thread(dev);
|
deinit_core_thread(dev);
|
||||||
ftl_conf_deinit(&dev->conf);
|
spdk_ftl_conf_deinit(&dev->conf);
|
||||||
free(dev);
|
free(dev);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -7,6 +7,9 @@
|
|||||||
spdk_ftl_get_default_conf;
|
spdk_ftl_get_default_conf;
|
||||||
spdk_ftl_dev_get_attrs;
|
spdk_ftl_dev_get_attrs;
|
||||||
spdk_ftl_dev_get_conf;
|
spdk_ftl_dev_get_conf;
|
||||||
|
spdk_ftl_conf_copy;
|
||||||
|
spdk_ftl_conf_deinit;
|
||||||
|
spdk_ftl_get_io_channel;
|
||||||
|
|
||||||
local: *;
|
local: *;
|
||||||
};
|
};
|
||||||
|
@ -27,7 +27,7 @@ spdk_ftl_dev_get_conf(const struct spdk_ftl_dev *dev, struct spdk_ftl_conf *conf
|
|||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
ftl_conf_cpy(struct spdk_ftl_conf *dst, const struct spdk_ftl_conf *src)
|
spdk_ftl_conf_copy(struct spdk_ftl_conf *dst, const struct spdk_ftl_conf *src)
|
||||||
{
|
{
|
||||||
char *name = NULL;
|
char *name = NULL;
|
||||||
char *core_mask = NULL;
|
char *core_mask = NULL;
|
||||||
@ -74,7 +74,7 @@ error:
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
ftl_conf_deinit(struct spdk_ftl_conf *conf)
|
spdk_ftl_conf_deinit(struct spdk_ftl_conf *conf)
|
||||||
{
|
{
|
||||||
free(conf->name);
|
free(conf->name);
|
||||||
free(conf->core_mask);
|
free(conf->core_mask);
|
||||||
@ -100,7 +100,7 @@ ftl_conf_init_dev(struct spdk_ftl_dev *dev, const struct spdk_ftl_conf *conf)
|
|||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
rc = ftl_conf_cpy(&dev->conf, conf);
|
rc = spdk_ftl_conf_copy(&dev->conf, conf);
|
||||||
if (rc) {
|
if (rc) {
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
@ -10,10 +10,6 @@
|
|||||||
|
|
||||||
bool ftl_conf_is_valid(const struct spdk_ftl_conf *conf);
|
bool ftl_conf_is_valid(const struct spdk_ftl_conf *conf);
|
||||||
|
|
||||||
int ftl_conf_cpy(struct spdk_ftl_conf *dst, const struct spdk_ftl_conf *src);
|
|
||||||
|
|
||||||
void ftl_conf_deinit(struct spdk_ftl_conf *conf);
|
|
||||||
|
|
||||||
int ftl_conf_init_dev(struct spdk_ftl_dev *dev, const struct spdk_ftl_conf *conf);
|
int ftl_conf_init_dev(struct spdk_ftl_dev *dev, const struct spdk_ftl_conf *conf);
|
||||||
|
|
||||||
#endif /* FTL_DEFS_H */
|
#endif /* FTL_DEFS_H */
|
||||||
|
@ -109,6 +109,9 @@ DEPDIRS-scheduler_gscheduler := event log
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
# module/bdev
|
# module/bdev
|
||||||
|
ifeq ($(OS),Linux)
|
||||||
|
DEPDIRS-bdev_ftl := bdev json log util ftl
|
||||||
|
endif
|
||||||
DEPDIRS-bdev_gpt := bdev json log thread util
|
DEPDIRS-bdev_gpt := bdev json log thread util
|
||||||
|
|
||||||
DEPDIRS-bdev_error := $(BDEV_DEPS)
|
DEPDIRS-bdev_error := $(BDEV_DEPS)
|
||||||
|
@ -54,7 +54,7 @@ ifeq ($(OS),Linux)
|
|||||||
BLOCKDEV_MODULES_LIST += bdev_aio
|
BLOCKDEV_MODULES_LIST += bdev_aio
|
||||||
BLOCKDEV_MODULES_PRIVATE_LIBS += -laio
|
BLOCKDEV_MODULES_PRIVATE_LIBS += -laio
|
||||||
INTR_BLOCKDEV_MODULES_LIST += bdev_aio
|
INTR_BLOCKDEV_MODULES_LIST += bdev_aio
|
||||||
BLOCKDEV_MODULES_LIST += ftl
|
BLOCKDEV_MODULES_LIST += bdev_ftl ftl
|
||||||
ifeq ($(CONFIG_VIRTIO),y)
|
ifeq ($(CONFIG_VIRTIO),y)
|
||||||
BLOCKDEV_MODULES_LIST += bdev_virtio virtio
|
BLOCKDEV_MODULES_LIST += bdev_virtio virtio
|
||||||
endif
|
endif
|
||||||
|
@ -19,7 +19,7 @@ DIRS-$(CONFIG_REDUCE) += compress
|
|||||||
DIRS-$(CONFIG_URING) += uring
|
DIRS-$(CONFIG_URING) += uring
|
||||||
|
|
||||||
ifeq ($(OS),Linux)
|
ifeq ($(OS),Linux)
|
||||||
DIRS-y += aio
|
DIRS-y += aio ftl
|
||||||
DIRS-$(CONFIG_ISCSI_INITIATOR) += iscsi
|
DIRS-$(CONFIG_ISCSI_INITIATOR) += iscsi
|
||||||
DIRS-$(CONFIG_VIRTIO) += virtio
|
DIRS-$(CONFIG_VIRTIO) += virtio
|
||||||
DIRS-$(CONFIG_PMDK) += pmem
|
DIRS-$(CONFIG_PMDK) += pmem
|
||||||
|
23
module/bdev/ftl/Makefile
Normal file
23
module/bdev/ftl/Makefile
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
# SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
# Copyright (c) Intel Corporation.
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
|
||||||
|
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../..)
|
||||||
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
||||||
|
|
||||||
|
SO_VER := 4
|
||||||
|
SO_MINOR := 0
|
||||||
|
|
||||||
|
CFLAGS += -I$(SPDK_ROOT_DIR)/lib/ftl/
|
||||||
|
|
||||||
|
ifdef SPDK_FTL_VSS_EMU
|
||||||
|
CFLAGS += -DSPDK_FTL_VSS_EMU
|
||||||
|
endif
|
||||||
|
|
||||||
|
C_SRCS += bdev_ftl.c
|
||||||
|
LIBNAME = bdev_ftl
|
||||||
|
|
||||||
|
SPDK_MAP_FILE = $(SPDK_ROOT_DIR)/mk/spdk_blank.map
|
||||||
|
|
||||||
|
include $(SPDK_ROOT_DIR)/mk/spdk.lib.mk
|
425
module/bdev/ftl/bdev_ftl.c
Normal file
425
module/bdev/ftl/bdev_ftl.c
Normal file
@ -0,0 +1,425 @@
|
|||||||
|
/* SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
* Copyright (c) Intel Corporation.
|
||||||
|
* All rights reserved.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "spdk/stdinc.h"
|
||||||
|
#include "spdk/bdev.h"
|
||||||
|
#include "spdk/env.h"
|
||||||
|
#include "spdk/thread.h"
|
||||||
|
#include "spdk/json.h"
|
||||||
|
#include "spdk/string.h"
|
||||||
|
#include "spdk/likely.h"
|
||||||
|
#include "spdk/util.h"
|
||||||
|
#include "spdk/string.h"
|
||||||
|
#include "spdk/ftl.h"
|
||||||
|
#include "spdk/log.h"
|
||||||
|
|
||||||
|
#include "bdev_ftl.h"
|
||||||
|
|
||||||
|
struct ftl_bdev {
|
||||||
|
struct spdk_bdev bdev;
|
||||||
|
struct spdk_ftl_dev *dev;
|
||||||
|
ftl_bdev_init_fn init_cb;
|
||||||
|
void *init_arg;
|
||||||
|
int rc;
|
||||||
|
struct spdk_bdev_desc *base_bdev_desc;
|
||||||
|
struct spdk_bdev_desc *cache_bdev_desc;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct ftl_deferred_init {
|
||||||
|
struct spdk_ftl_conf conf;
|
||||||
|
|
||||||
|
LIST_ENTRY(ftl_deferred_init) entry;
|
||||||
|
};
|
||||||
|
|
||||||
|
static LIST_HEAD(, ftl_deferred_init) g_deferred_init = LIST_HEAD_INITIALIZER(g_deferred_init);
|
||||||
|
|
||||||
|
static int bdev_ftl_initialize(void);
|
||||||
|
static void bdev_ftl_examine(struct spdk_bdev *bdev);
|
||||||
|
|
||||||
|
static int
|
||||||
|
bdev_ftl_get_ctx_size(void)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static struct spdk_bdev_module g_ftl_if = {
|
||||||
|
.name = "ftl",
|
||||||
|
.module_init = bdev_ftl_initialize,
|
||||||
|
.examine_disk = bdev_ftl_examine,
|
||||||
|
.get_ctx_size = bdev_ftl_get_ctx_size,
|
||||||
|
};
|
||||||
|
|
||||||
|
SPDK_BDEV_MODULE_REGISTER(ftl, &g_ftl_if)
|
||||||
|
|
||||||
|
static void
|
||||||
|
bdev_ftl_free(struct ftl_bdev *ftl_bdev)
|
||||||
|
{
|
||||||
|
spdk_bdev_close(ftl_bdev->base_bdev_desc);
|
||||||
|
spdk_bdev_close(ftl_bdev->cache_bdev_desc);
|
||||||
|
free(ftl_bdev->bdev.name);
|
||||||
|
free(ftl_bdev);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
bdev_ftl_dev_free_cb(void *ctx, int status)
|
||||||
|
{
|
||||||
|
struct ftl_bdev *ftl_bdev = ctx;
|
||||||
|
|
||||||
|
spdk_bdev_destruct_done(&ftl_bdev->bdev, status);
|
||||||
|
bdev_ftl_free(ftl_bdev);
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
bdev_ftl_destruct(void *ctx)
|
||||||
|
{
|
||||||
|
struct ftl_bdev *ftl_bdev = ctx;
|
||||||
|
|
||||||
|
spdk_ftl_dev_free(ftl_bdev->dev, bdev_ftl_dev_free_cb, ftl_bdev);
|
||||||
|
|
||||||
|
/* return 1 to indicate that the destruction is asynchronous */
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
_bdev_ftl_submit_request(struct spdk_io_channel *ch, struct spdk_bdev_io *bdev_io)
|
||||||
|
{
|
||||||
|
switch (bdev_io->type) {
|
||||||
|
case SPDK_BDEV_IO_TYPE_READ:
|
||||||
|
case SPDK_BDEV_IO_TYPE_WRITE:
|
||||||
|
case SPDK_BDEV_IO_TYPE_UNMAP:
|
||||||
|
case SPDK_BDEV_IO_TYPE_FLUSH:
|
||||||
|
spdk_bdev_io_complete(bdev_io, SPDK_BDEV_IO_STATUS_SUCCESS);
|
||||||
|
return 0;
|
||||||
|
default:
|
||||||
|
return -ENOTSUP;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
bdev_ftl_submit_request(struct spdk_io_channel *ch, struct spdk_bdev_io *bdev_io)
|
||||||
|
{
|
||||||
|
int rc = _bdev_ftl_submit_request(ch, bdev_io);
|
||||||
|
|
||||||
|
if (spdk_unlikely(rc != 0)) {
|
||||||
|
spdk_bdev_io_complete(bdev_io, rc);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool
|
||||||
|
bdev_ftl_io_type_supported(void *ctx, enum spdk_bdev_io_type io_type)
|
||||||
|
{
|
||||||
|
switch (io_type) {
|
||||||
|
case SPDK_BDEV_IO_TYPE_READ:
|
||||||
|
case SPDK_BDEV_IO_TYPE_WRITE:
|
||||||
|
case SPDK_BDEV_IO_TYPE_FLUSH:
|
||||||
|
case SPDK_BDEV_IO_TYPE_UNMAP:
|
||||||
|
return true;
|
||||||
|
default:
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static struct spdk_io_channel *
|
||||||
|
bdev_ftl_get_io_channel(void *ctx)
|
||||||
|
{
|
||||||
|
struct ftl_bdev *ftl_bdev = ctx;
|
||||||
|
|
||||||
|
return spdk_ftl_get_io_channel(ftl_bdev->dev);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
bdev_ftl_write_config_json(struct spdk_bdev *bdev, struct spdk_json_write_ctx *w)
|
||||||
|
{
|
||||||
|
struct ftl_bdev *ftl_bdev = bdev->ctxt;
|
||||||
|
struct spdk_ftl_conf conf;
|
||||||
|
char uuid[SPDK_UUID_STRING_LEN];
|
||||||
|
|
||||||
|
spdk_ftl_dev_get_conf(ftl_bdev->dev, &conf);
|
||||||
|
|
||||||
|
spdk_json_write_object_begin(w);
|
||||||
|
|
||||||
|
spdk_json_write_named_string(w, "method", "bdev_ftl_create");
|
||||||
|
|
||||||
|
spdk_json_write_named_object_begin(w, "params");
|
||||||
|
spdk_json_write_named_string(w, "name", ftl_bdev->bdev.name);
|
||||||
|
|
||||||
|
spdk_json_write_named_uint64(w, "overprovisioning", conf.overprovisioning);
|
||||||
|
|
||||||
|
if (conf.core_mask) {
|
||||||
|
spdk_json_write_named_string(w, "core_mask", conf.core_mask);
|
||||||
|
}
|
||||||
|
|
||||||
|
spdk_uuid_fmt_lower(uuid, sizeof(uuid), &conf.uuid);
|
||||||
|
spdk_json_write_named_string(w, "uuid", uuid);
|
||||||
|
|
||||||
|
spdk_json_write_named_string(w, "base_bdev", conf.base_bdev);
|
||||||
|
|
||||||
|
if (conf.cache_bdev) {
|
||||||
|
spdk_json_write_named_string(w, "cache", conf.cache_bdev);
|
||||||
|
}
|
||||||
|
|
||||||
|
spdk_json_write_object_end(w);
|
||||||
|
spdk_json_write_object_end(w);
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
bdev_ftl_dump_info_json(void *ctx, struct spdk_json_write_ctx *w)
|
||||||
|
{
|
||||||
|
struct ftl_bdev *ftl_bdev = ctx;
|
||||||
|
struct spdk_ftl_attrs attrs;
|
||||||
|
struct spdk_ftl_conf conf;
|
||||||
|
|
||||||
|
spdk_ftl_dev_get_attrs(ftl_bdev->dev, &attrs);
|
||||||
|
spdk_ftl_dev_get_conf(ftl_bdev->dev, &conf);
|
||||||
|
|
||||||
|
spdk_json_write_named_object_begin(w, "ftl");
|
||||||
|
|
||||||
|
spdk_json_write_named_string(w, "base_bdev", conf.base_bdev);
|
||||||
|
|
||||||
|
if (conf.cache_bdev) {
|
||||||
|
spdk_json_write_named_string(w, "cache", conf.cache_bdev);
|
||||||
|
}
|
||||||
|
spdk_json_write_named_string_fmt(w, "num_zones", "%zu", attrs.num_zones);
|
||||||
|
spdk_json_write_named_string_fmt(w, "zone_size", "%zu", attrs.zone_size);
|
||||||
|
|
||||||
|
/* ftl */
|
||||||
|
spdk_json_write_object_end(w);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static const struct spdk_bdev_fn_table ftl_fn_table = {
|
||||||
|
.destruct = bdev_ftl_destruct,
|
||||||
|
.submit_request = bdev_ftl_submit_request,
|
||||||
|
.io_type_supported = bdev_ftl_io_type_supported,
|
||||||
|
.get_io_channel = bdev_ftl_get_io_channel,
|
||||||
|
.write_config_json = bdev_ftl_write_config_json,
|
||||||
|
.dump_info_json = bdev_ftl_dump_info_json,
|
||||||
|
};
|
||||||
|
|
||||||
|
static void
|
||||||
|
bdev_ftl_create_err_complete(struct ftl_bdev *ftl_bdev)
|
||||||
|
{
|
||||||
|
ftl_bdev_init_fn init_cb = ftl_bdev->init_cb;
|
||||||
|
void *init_arg = ftl_bdev->init_arg;
|
||||||
|
int rc = ftl_bdev->rc;
|
||||||
|
|
||||||
|
bdev_ftl_free(ftl_bdev);
|
||||||
|
|
||||||
|
assert(rc);
|
||||||
|
init_cb(NULL, init_arg, rc);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
bdev_ftl_create_err_cleanup_cb(void *ctx, int status)
|
||||||
|
{
|
||||||
|
struct ftl_bdev *ftl_bdev = ctx;
|
||||||
|
|
||||||
|
if (status) {
|
||||||
|
SPDK_ERRLOG("Fatal ERROR of FTL cleanup, name %s\n", ftl_bdev->bdev.name);
|
||||||
|
}
|
||||||
|
|
||||||
|
bdev_ftl_create_err_complete(ftl_bdev);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
bdev_ftl_create_cb(struct spdk_ftl_dev *dev, void *ctx, int status)
|
||||||
|
{
|
||||||
|
struct ftl_bdev *ftl_bdev = ctx;
|
||||||
|
struct ftl_bdev_info info = {};
|
||||||
|
struct spdk_ftl_attrs attrs;
|
||||||
|
struct spdk_ftl_conf conf;
|
||||||
|
ftl_bdev_init_fn init_cb = ftl_bdev->init_cb;
|
||||||
|
void *init_arg = ftl_bdev->init_arg;
|
||||||
|
|
||||||
|
if (status) {
|
||||||
|
SPDK_ERRLOG("Failed to create FTL device (%d)\n", status);
|
||||||
|
ftl_bdev->rc = status;
|
||||||
|
goto error;
|
||||||
|
}
|
||||||
|
|
||||||
|
spdk_ftl_dev_get_attrs(dev, &attrs);
|
||||||
|
spdk_ftl_dev_get_conf(dev, &conf);
|
||||||
|
|
||||||
|
ftl_bdev->dev = dev;
|
||||||
|
ftl_bdev->bdev.product_name = "FTL disk";
|
||||||
|
ftl_bdev->bdev.write_cache = 0;
|
||||||
|
ftl_bdev->bdev.blocklen = attrs.block_size;
|
||||||
|
ftl_bdev->bdev.blockcnt = attrs.num_blocks;
|
||||||
|
ftl_bdev->bdev.uuid = conf.uuid;
|
||||||
|
ftl_bdev->bdev.optimal_io_boundary = attrs.optimum_io_size;
|
||||||
|
ftl_bdev->bdev.split_on_optimal_io_boundary = true;
|
||||||
|
|
||||||
|
SPDK_DEBUGLOG(bdev_ftl, "Creating bdev %s:\n", ftl_bdev->bdev.name);
|
||||||
|
SPDK_DEBUGLOG(bdev_ftl, "\tblock_len:\t%zu\n", attrs.block_size);
|
||||||
|
SPDK_DEBUGLOG(bdev_ftl, "\tnum_blocks:\t%"PRIu64"\n", attrs.num_blocks);
|
||||||
|
|
||||||
|
ftl_bdev->bdev.ctxt = ftl_bdev;
|
||||||
|
ftl_bdev->bdev.fn_table = &ftl_fn_table;
|
||||||
|
ftl_bdev->bdev.module = &g_ftl_if;
|
||||||
|
|
||||||
|
status = spdk_bdev_register(&ftl_bdev->bdev);
|
||||||
|
if (status) {
|
||||||
|
ftl_bdev->rc = status;
|
||||||
|
goto error;
|
||||||
|
}
|
||||||
|
|
||||||
|
info.name = ftl_bdev->bdev.name;
|
||||||
|
info.uuid = ftl_bdev->bdev.uuid;
|
||||||
|
|
||||||
|
init_cb(&info, init_arg, 0);
|
||||||
|
return;
|
||||||
|
|
||||||
|
error:
|
||||||
|
if (ftl_bdev->dev) {
|
||||||
|
/* FTL was created, but we have got an error, so we need to delete it */
|
||||||
|
spdk_ftl_dev_free(dev, bdev_ftl_create_err_cleanup_cb, ftl_bdev);
|
||||||
|
} else {
|
||||||
|
bdev_ftl_create_err_complete(ftl_bdev);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
bdev_ftl_defer_free(struct ftl_deferred_init *init)
|
||||||
|
{
|
||||||
|
spdk_ftl_conf_deinit(&init->conf);
|
||||||
|
free(init);
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
bdev_ftl_defer_init(const struct spdk_ftl_conf *conf)
|
||||||
|
{
|
||||||
|
struct ftl_deferred_init *init;
|
||||||
|
int rc;
|
||||||
|
|
||||||
|
init = calloc(1, sizeof(*init));
|
||||||
|
if (!init) {
|
||||||
|
return -ENOMEM;
|
||||||
|
}
|
||||||
|
|
||||||
|
rc = spdk_ftl_conf_copy(&init->conf, conf);
|
||||||
|
if (rc) {
|
||||||
|
free(init);
|
||||||
|
return -ENOMEM;
|
||||||
|
}
|
||||||
|
|
||||||
|
LIST_INSERT_HEAD(&g_deferred_init, init, entry);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
bdev_ftl_create_bdev_event_cb(enum spdk_bdev_event_type type, struct spdk_bdev *bdev, void *ctx)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
bdev_ftl_create_bdev(const struct spdk_ftl_conf *conf, ftl_bdev_init_fn cb, void *cb_arg)
|
||||||
|
{
|
||||||
|
struct ftl_bdev *ftl_bdev;
|
||||||
|
struct spdk_bdev_desc *base_bdev_desc, *cache_bdev_desc;
|
||||||
|
int rc;
|
||||||
|
|
||||||
|
rc = spdk_bdev_open_ext(conf->base_bdev, false, bdev_ftl_create_bdev_event_cb, NULL,
|
||||||
|
&base_bdev_desc);
|
||||||
|
if (rc) {
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
rc = spdk_bdev_open_ext(conf->cache_bdev, false, bdev_ftl_create_bdev_event_cb, NULL,
|
||||||
|
&cache_bdev_desc);
|
||||||
|
if (rc) {
|
||||||
|
spdk_bdev_close(base_bdev_desc);
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
|
||||||
|
ftl_bdev = calloc(1, sizeof(*ftl_bdev));
|
||||||
|
if (!ftl_bdev) {
|
||||||
|
SPDK_ERRLOG("Could not allocate ftl_bdev\n");
|
||||||
|
spdk_bdev_close(base_bdev_desc);
|
||||||
|
spdk_bdev_close(cache_bdev_desc);
|
||||||
|
return -ENOMEM;
|
||||||
|
}
|
||||||
|
|
||||||
|
ftl_bdev->base_bdev_desc = base_bdev_desc;
|
||||||
|
ftl_bdev->cache_bdev_desc = cache_bdev_desc;
|
||||||
|
|
||||||
|
ftl_bdev->bdev.name = strdup(conf->name);
|
||||||
|
if (!ftl_bdev->bdev.name) {
|
||||||
|
rc = -ENOMEM;
|
||||||
|
goto error;
|
||||||
|
}
|
||||||
|
|
||||||
|
ftl_bdev->init_cb = cb;
|
||||||
|
ftl_bdev->init_arg = cb_arg;
|
||||||
|
|
||||||
|
rc = spdk_ftl_dev_init(conf, bdev_ftl_create_cb, ftl_bdev);
|
||||||
|
if (rc) {
|
||||||
|
SPDK_ERRLOG("Could not create FTL device\n");
|
||||||
|
goto error;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
error:
|
||||||
|
bdev_ftl_free(ftl_bdev);
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
bdev_ftl_initialize(void)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
bdev_ftl_delete_bdev(const char *name, spdk_bdev_unregister_cb cb_fn, void *cb_arg)
|
||||||
|
{
|
||||||
|
int rc;
|
||||||
|
|
||||||
|
rc = spdk_bdev_unregister_by_name(name, &g_ftl_if, cb_fn, cb_arg);
|
||||||
|
if (rc) {
|
||||||
|
cb_fn(cb_arg, rc);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
bdev_ftl_create_defered_cb(const struct ftl_bdev_info *info, void *ctx, int status)
|
||||||
|
{
|
||||||
|
struct ftl_deferred_init *opts = ctx;
|
||||||
|
|
||||||
|
if (status) {
|
||||||
|
SPDK_ERRLOG("Failed to initialize FTL bdev '%s'\n", opts->conf.name);
|
||||||
|
}
|
||||||
|
|
||||||
|
bdev_ftl_defer_free(opts);
|
||||||
|
|
||||||
|
spdk_bdev_module_examine_done(&g_ftl_if);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
bdev_ftl_examine(struct spdk_bdev *bdev)
|
||||||
|
{
|
||||||
|
struct ftl_deferred_init *opts;
|
||||||
|
int rc;
|
||||||
|
|
||||||
|
LIST_FOREACH(opts, &g_deferred_init, entry) {
|
||||||
|
/* spdk_bdev_module_examine_done will be called by bdev_ftl_create_defered_cb */
|
||||||
|
rc = bdev_ftl_create_bdev(&opts->conf, bdev_ftl_create_defered_cb, opts);
|
||||||
|
if (rc == -ENODEV) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
LIST_REMOVE(opts, entry);
|
||||||
|
|
||||||
|
if (rc) {
|
||||||
|
bdev_ftl_create_defered_cb(NULL, opts, rc);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
spdk_bdev_module_examine_done(&g_ftl_if);
|
||||||
|
}
|
||||||
|
|
||||||
|
SPDK_LOG_REGISTER_COMPONENT(bdev_ftl)
|
27
module/bdev/ftl/bdev_ftl.h
Normal file
27
module/bdev/ftl/bdev_ftl.h
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
/* SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
* Copyright (c) Intel Corporation.
|
||||||
|
* All rights reserved.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef SPDK_BDEV_FTL_H
|
||||||
|
#define SPDK_BDEV_FTL_H
|
||||||
|
|
||||||
|
#include "spdk/stdinc.h"
|
||||||
|
#include "spdk/bdev_module.h"
|
||||||
|
#include "spdk/ftl.h"
|
||||||
|
|
||||||
|
#include "ftl_core.h"
|
||||||
|
|
||||||
|
struct ftl_bdev_info {
|
||||||
|
const char *name;
|
||||||
|
struct spdk_uuid uuid;
|
||||||
|
};
|
||||||
|
|
||||||
|
typedef void (*ftl_bdev_init_fn)(const struct ftl_bdev_info *, void *, int);
|
||||||
|
typedef void (*ftl_bdev_thread_fn)(void *);
|
||||||
|
|
||||||
|
int bdev_ftl_create_bdev(const struct spdk_ftl_conf *conf, ftl_bdev_init_fn cb, void *cb_arg);
|
||||||
|
void bdev_ftl_delete_bdev(const char *name, spdk_bdev_unregister_cb cb_fn, void *cb_arg);
|
||||||
|
int bdev_ftl_defer_init(const struct spdk_ftl_conf *conf);
|
||||||
|
|
||||||
|
#endif /* SPDK_BDEV_FTL_H */
|
Loading…
Reference in New Issue
Block a user