mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	We can read fs_info from extent buffer and can drop it from the parameters. Signed-off-by: David Sterba <dsterba@suse.com>
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			702 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			702 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0 */
 | 
						|
/*
 | 
						|
 * Copyright (C) Qu Wenruo 2017.  All rights reserved.
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef BTRFS_TREE_CHECKER_H
 | 
						|
#define BTRFS_TREE_CHECKER_H
 | 
						|
 | 
						|
#include "ctree.h"
 | 
						|
#include "extent_io.h"
 | 
						|
 | 
						|
/*
 | 
						|
 * Comprehensive leaf checker.
 | 
						|
 * Will check not only the item pointers, but also every possible member
 | 
						|
 * in item data.
 | 
						|
 */
 | 
						|
int btrfs_check_leaf_full(struct extent_buffer *leaf);
 | 
						|
 | 
						|
/*
 | 
						|
 * Less strict leaf checker.
 | 
						|
 * Will only check item pointers, not reading item data.
 | 
						|
 */
 | 
						|
int btrfs_check_leaf_relaxed(struct extent_buffer *leaf);
 | 
						|
int btrfs_check_node(struct extent_buffer *node);
 | 
						|
 | 
						|
int btrfs_check_chunk_valid(struct extent_buffer *leaf,
 | 
						|
			    struct btrfs_chunk *chunk, u64 logical);
 | 
						|
 | 
						|
#endif
 |