xref: /spdk/lib/ftl/ftl_sb.c (revision 510f4c134a21b45ff3a5add9ebc6c6cf7e49aeab)
1 /*   SPDX-License-Identifier: BSD-3-Clause
2  *   Copyright (c) Intel Corporation.
3  *   All rights reserved.
4  */
5 
6 #include "ftl_sb.h"
7 #include "ftl_core.h"
8 #include "ftl_layout.h"
9 
10 bool
11 ftl_superblock_check_magic(struct ftl_superblock *sb)
12 {
13 	return sb->header.magic == FTL_SUPERBLOCK_MAGIC;
14 }
15