15 lines
285 B
C
15 lines
285 B
C
|
/* SPDX-License-Identifier: BSD-3-Clause
|
||
|
* Copyright (c) Intel Corporation.
|
||
|
* All rights reserved.
|
||
|
*/
|
||
|
|
||
|
#ifndef FTL_DEBUG_H
|
||
|
#define FTL_DEBUG_H
|
||
|
|
||
|
#include "ftl_internal.h"
|
||
|
#include "ftl_core.h"
|
||
|
|
||
|
void ftl_dev_dump_stats(const struct spdk_ftl_dev *dev);
|
||
|
|
||
|
#endif /* FTL_DEBUG_H */
|