21 lines
427 B
C
21 lines
427 B
C
|
/* SPDX-License-Identifier: BSD-3-Clause
|
||
|
* Copyright (c) Intel Corporation.
|
||
|
* All rights reserved.
|
||
|
*/
|
||
|
|
||
|
#include "ftl_core.h"
|
||
|
#include "ftl_utils.h"
|
||
|
#include "ftl_mngt.h"
|
||
|
#include "ftl_mngt_steps.h"
|
||
|
#include "ftl_internal.h"
|
||
|
|
||
|
void
|
||
|
ftl_mngt_check_conf(struct spdk_ftl_dev *dev, struct ftl_mngt_process *mngt)
|
||
|
{
|
||
|
if (ftl_conf_is_valid(&dev->conf)) {
|
||
|
ftl_mngt_next_step(mngt);
|
||
|
} else {
|
||
|
ftl_mngt_fail_step(mngt);
|
||
|
}
|
||
|
}
|