Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com> Signed-off-by: Kozlowski Mateusz <mateusz.kozlowski@intel.com> Change-Id: I3476a7b11e3078da519beb39fd5f49b8e838a238 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/13409 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> Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com>
24 lines
568 B
C
24 lines
568 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright (c) Intel Corporation.
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef FTL_INTERNAL_H
|
|
#define FTL_INTERNAL_H
|
|
|
|
#include "spdk/stdinc.h"
|
|
#include "spdk/crc32.h"
|
|
#include "spdk/util.h"
|
|
#include "spdk/uuid.h"
|
|
|
|
/* Marks address as invalid */
|
|
#define FTL_ADDR_INVALID ((ftl_addr)-1)
|
|
|
|
/*
|
|
* This type represents address in the ftl address space. Values from 0 to based bdev size are
|
|
* mapped directly to base device lbas. Values above that represent nv cache lbas.
|
|
*/
|
|
typedef uint64_t ftl_addr;
|
|
|
|
#endif /* FTL_INTERNAL_H */
|