xref: /spdk/lib/ftl/ftl_sb.c (revision cdb0726b95631d46eaf4f2e39ddb6533f150fd27)
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