blob: aba542755710f6e9a9fc33b4148d19466071cf2a [file] [log] [blame]
Qu Wenruo557ea5d2017-10-09 01:51:02 +00001/*
2 * Copyright (C) Qu Wenruo 2017. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program.
15 */
16
17#ifndef __BTRFS_TREE_CHECKER__
18#define __BTRFS_TREE_CHECKER__
19
20#include "ctree.h"
21#include "extent_io.h"
22
Qu Wenruo69fc6cb2017-11-08 08:54:24 +080023/*
24 * Comprehensive leaf checker.
25 * Will check not only the item pointers, but also every possible member
26 * in item data.
27 */
Qu Wenruo2f659542018-01-25 14:56:18 +080028int btrfs_check_leaf_full(struct btrfs_fs_info *fs_info,
29 struct extent_buffer *leaf);
Qu Wenruo69fc6cb2017-11-08 08:54:24 +080030
31/*
32 * Less strict leaf checker.
33 * Will only check item pointers, not reading item data.
34 */
Qu Wenruo2f659542018-01-25 14:56:18 +080035int btrfs_check_leaf_relaxed(struct btrfs_fs_info *fs_info,
Qu Wenruo69fc6cb2017-11-08 08:54:24 +080036 struct extent_buffer *leaf);
Qu Wenruo2f659542018-01-25 14:56:18 +080037int btrfs_check_node(struct btrfs_fs_info *fs_info, struct extent_buffer *node);
Qu Wenruo557ea5d2017-10-09 01:51:02 +000038
39#endif