mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-03 18:20:25 +02:00 
			
		
		
		
	Remove GPL boilerplate text (long, short, one-line) and keep the rest, ie. personal, company or original source copyright statements. Add the SPDX header. Unify the include protection macros to match the file names. Signed-off-by: David Sterba <dsterba@suse.com>
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			703 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			703 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 btrfs_fs_info *fs_info,
 | 
						|
			  struct extent_buffer *leaf);
 | 
						|
 | 
						|
/*
 | 
						|
 * Less strict leaf checker.
 | 
						|
 * Will only check item pointers, not reading item data.
 | 
						|
 */
 | 
						|
int btrfs_check_leaf_relaxed(struct btrfs_fs_info *fs_info,
 | 
						|
			     struct extent_buffer *leaf);
 | 
						|
int btrfs_check_node(struct btrfs_fs_info *fs_info, struct extent_buffer *node);
 | 
						|
 | 
						|
#endif
 |