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