2022-06-21 13:31:54 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
2022-11-01 20:26:26 +00:00
|
|
|
* Copyright (C) 2022 Intel Corporation.
|
2022-06-21 13:31:54 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FTL_CONF_H
|
|
|
|
#define FTL_CONF_H
|
|
|
|
|
|
|
|
#include "spdk/ftl.h"
|
|
|
|
|
2022-06-20 10:00:04 +00:00
|
|
|
bool ftl_conf_is_valid(const struct spdk_ftl_conf *conf);
|
|
|
|
|
2022-06-21 13:45:21 +00:00
|
|
|
int ftl_conf_init_dev(struct spdk_ftl_dev *dev, const struct spdk_ftl_conf *conf);
|
|
|
|
|
2022-06-21 13:31:54 +00:00
|
|
|
#endif /* FTL_DEFS_H */
|