mirror of
				https://kernel.googlesource.com/pub/scm/linux/kernel/git/stable/linux-stable.git
				synced 2025-11-04 07:44:51 +10:00 
			
		
		
		
	Move these out of ctree.h into orphan.h to cut down on code in ctree.h. Signed-off-by: Josef Bacik <josef@toxicpanda.com> Reviewed-by: David Sterba <dsterba@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
		
			
				
	
	
		
			12 lines
		
	
	
		
			307 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			307 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0 */
 | 
						|
 | 
						|
#ifndef BTRFS_ORPHAN_H
 | 
						|
#define BTRFS_ORPHAN_H
 | 
						|
 | 
						|
int btrfs_insert_orphan_item(struct btrfs_trans_handle *trans,
 | 
						|
			     struct btrfs_root *root, u64 offset);
 | 
						|
int btrfs_del_orphan_item(struct btrfs_trans_handle *trans,
 | 
						|
			  struct btrfs_root *root, u64 offset);
 | 
						|
 | 
						|
#endif
 |