mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +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>
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			568 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			568 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0 */
 | 
						|
 | 
						|
#ifndef BTRFS_INODE_MAP_H
 | 
						|
#define BTRFS_INODE_MAP_H
 | 
						|
 | 
						|
void btrfs_init_free_ino_ctl(struct btrfs_root *root);
 | 
						|
void btrfs_unpin_free_ino(struct btrfs_root *root);
 | 
						|
void btrfs_return_ino(struct btrfs_root *root, u64 objectid);
 | 
						|
int btrfs_find_free_ino(struct btrfs_root *root, u64 *objectid);
 | 
						|
int btrfs_save_ino_cache(struct btrfs_root *root,
 | 
						|
			 struct btrfs_trans_handle *trans);
 | 
						|
 | 
						|
int btrfs_find_free_objectid(struct btrfs_root *root, u64 *objectid);
 | 
						|
int btrfs_find_highest_objectid(struct btrfs_root *root, u64 *objectid);
 | 
						|
 | 
						|
#endif
 |