Layout of metadata will be part of the superblock at the end of the upgrade. Signed-off-by: Kozlowski Mateusz <mateusz.kozlowski@intel.com> Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com> Change-Id: If888866806e948ee07f0777612da73ab8b7548b1 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/13385 Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com>
24 lines
471 B
C
24 lines
471 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright (c) Intel Corporation.
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef FTL_SB_UPGRADE_H
|
|
#define FTL_SB_UPGRADE_H
|
|
|
|
#include "spdk/uuid.h"
|
|
#include "ftl_sb_common.h"
|
|
#include "ftl_sb_prev.h"
|
|
#include "ftl_sb_current.h"
|
|
|
|
struct spdk_ftl_dev;
|
|
struct ftl_layout_region;
|
|
|
|
union ftl_superblock_ver {
|
|
struct ftl_superblock_header header;
|
|
struct ftl_superblock_v2 v2;
|
|
struct ftl_superblock v3;
|
|
};
|
|
|
|
#endif /* FTL_SB_UPGRADE_H */
|