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