Signed-off-by: Kozlowski Mateusz <mateusz.kozlowski@intel.com> Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com> Change-Id: I9168af3cacffe9c4efae169b56df974a35bd4e2c Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/13296 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>
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 */
|