-
Notifications
You must be signed in to change notification settings - Fork 0
/
ref-verify.h
49 lines (40 loc) · 1.12 KB
/
ref-verify.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (C) 2014 Facebook. All rights reserved.
*/
#ifndef APFS_REF_VERIFY_H
#define APFS_REF_VERIFY_H
#ifdef CONFIG_APFS_FS_REF_VERIFY
int apfs_build_ref_tree(struct apfs_fs_info *fs_info);
void apfs_free_ref_cache(struct apfs_fs_info *fs_info);
int apfs_ref_tree_mod(struct apfs_fs_info *fs_info,
struct apfs_ref *generic_ref);
void apfs_free_ref_tree_range(struct apfs_fs_info *fs_info, u64 start,
u64 len);
static inline void apfs_init_ref_verify(struct apfs_fs_info *fs_info)
{
spin_lock_init(&fs_info->ref_verify_lock);
fs_info->block_tree = RB_ROOT;
}
#else
static inline int apfs_build_ref_tree(struct apfs_fs_info *fs_info)
{
return 0;
}
static inline void apfs_free_ref_cache(struct apfs_fs_info *fs_info)
{
}
static inline int apfs_ref_tree_mod(struct apfs_fs_info *fs_info,
struct apfs_ref *generic_ref)
{
return 0;
}
static inline void apfs_free_ref_tree_range(struct apfs_fs_info *fs_info,
u64 start, u64 len)
{
}
static inline void apfs_init_ref_verify(struct apfs_fs_info *fs_info)
{
}
#endif /* CONFIG_APFS_FS_REF_VERIFY */
#endif