2018-04-04 01:16:55 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2017-10-09 09:51:02 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) Qu Wenruo 2017. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
2018-04-04 01:16:55 +08:00
|
|
|
#ifndef BTRFS_TREE_CHECKER_H
|
|
|
|
#define BTRFS_TREE_CHECKER_H
|
2017-10-09 09:51:02 +08:00
|
|
|
|
|
|
|
#include "ctree.h"
|
|
|
|
#include "extent_io.h"
|
|
|
|
|
2017-11-08 08:54:24 +08:00
|
|
|
/*
|
|
|
|
* Comprehensive leaf checker.
|
|
|
|
* Will check not only the item pointers, but also every possible member
|
|
|
|
* in item data.
|
|
|
|
*/
|
2018-01-25 14:56:18 +08:00
|
|
|
int btrfs_check_leaf_full(struct btrfs_fs_info *fs_info,
|
|
|
|
struct extent_buffer *leaf);
|
2017-11-08 08:54:24 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Less strict leaf checker.
|
|
|
|
* Will only check item pointers, not reading item data.
|
|
|
|
*/
|
2018-01-25 14:56:18 +08:00
|
|
|
int btrfs_check_leaf_relaxed(struct btrfs_fs_info *fs_info,
|
2017-11-08 08:54:24 +08:00
|
|
|
struct extent_buffer *leaf);
|
2018-01-25 14:56:18 +08:00
|
|
|
int btrfs_check_node(struct btrfs_fs_info *fs_info, struct extent_buffer *node);
|
2017-10-09 09:51:02 +08:00
|
|
|
|
|
|
|
#endif
|