mirror of
				https://github.com/torvalds/linux.git
				synced 2025-10-31 16:48:26 +02:00 
			
		
		
		
	 22b46bdc5f
			
		
	
	
		22b46bdc5f
		
	
	
	
	
		
			
			Do a cleanup in the short headers: - add forward declarations for types referenced by pointers - add includes when types need them This fixes potential compilation problems if the headers are reordered or the missing includes are not provided indirectly. Signed-off-by: David Sterba <dsterba@suse.com>
		
			
				
	
	
		
			38 lines
		
	
	
	
		
			793 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
	
		
			793 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0 */
 | |
| 
 | |
| #ifndef BTRFS_ACL_H
 | |
| #define BTRFS_ACL_H
 | |
| 
 | |
| struct posix_acl;
 | |
| struct inode;
 | |
| struct btrfs_trans_handle;
 | |
| 
 | |
| #ifdef CONFIG_BTRFS_FS_POSIX_ACL
 | |
| 
 | |
| struct mnt_idmap;
 | |
| struct dentry;
 | |
| 
 | |
| struct posix_acl *btrfs_get_acl(struct inode *inode, int type, bool rcu);
 | |
| int btrfs_set_acl(struct mnt_idmap *idmap, struct dentry *dentry,
 | |
| 		  struct posix_acl *acl, int type);
 | |
| int __btrfs_set_acl(struct btrfs_trans_handle *trans, struct inode *inode,
 | |
| 		    struct posix_acl *acl, int type);
 | |
| 
 | |
| #else
 | |
| 
 | |
| #include <linux/errno.h>
 | |
| 
 | |
| struct btrfs_trans_handle;
 | |
| 
 | |
| #define btrfs_get_acl NULL
 | |
| #define btrfs_set_acl NULL
 | |
| static inline int __btrfs_set_acl(struct btrfs_trans_handle *trans,
 | |
| 				  struct inode *inode, struct posix_acl *acl,
 | |
| 				  int type)
 | |
| {
 | |
| 	return -EOPNOTSUPP;
 | |
| }
 | |
| 
 | |
| #endif
 | |
| 
 | |
| #endif
 |