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.
|
|
|
|
*/
|
2019-03-20 23:23:29 +08:00
|
|
|
int btrfs_check_leaf_full(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.
|
|
|
|
*/
|
2019-03-20 23:24:18 +08:00
|
|
|
int btrfs_check_leaf_relaxed(struct extent_buffer *leaf);
|
2019-03-20 23:25:00 +08:00
|
|
|
int btrfs_check_node(struct extent_buffer *node);
|
2017-10-09 09:51:02 +08:00
|
|
|
|
2019-03-20 23:40:48 +08:00
|
|
|
int btrfs_check_chunk_valid(struct extent_buffer *leaf,
|
2019-03-20 13:16:42 +08:00
|
|
|
struct btrfs_chunk *chunk, u64 logical);
|
|
|
|
|
2017-10-09 09:51:02 +08:00
|
|
|
#endif
|