18 lines
373 B
C
18 lines
373 B
C
|
/* SPDX-License-Identifier: BSD-3-Clause
|
||
|
* Copyright (c) Intel Corporation.
|
||
|
* All rights reserved.
|
||
|
*/
|
||
|
|
||
|
#include "spdk/likely.h"
|
||
|
#include "spdk/stdinc.h"
|
||
|
#include "spdk/nvme.h"
|
||
|
#include "spdk/thread.h"
|
||
|
#include "spdk/bdev_module.h"
|
||
|
#include "spdk/string.h"
|
||
|
#include "spdk/ftl.h"
|
||
|
#include "spdk/crc32.h"
|
||
|
|
||
|
#include "ftl_core.h"
|
||
|
|
||
|
SPDK_LOG_REGISTER_COMPONENT(ftl_core)
|