Signed-off-by: Kozlowski Mateusz <mateusz.kozlowski@intel.com> Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com> Change-Id: I336880ee263dbb23b613bd933c776f0b922412cc Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/13294 Community-CI: Mellanox Build Bot Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
20 lines
471 B
C
20 lines
471 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright (c) Intel Corporation.
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef FTL_CONF_H
|
|
#define FTL_CONF_H
|
|
|
|
#include "spdk/ftl.h"
|
|
|
|
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);
|
|
|
|
#endif /* FTL_DEFS_H */
|