Contributors: 8
	  
        
          | Author | 
          Tokens | 
          Token Proportion | 
          Commits | 
          Commit Proportion | 
        
	  
	  
        
        
          | Josef Bacik | 
          43 | 
          31.16% | 
          1 | 
          8.33% | 
        
        
          | Anand Jain | 
          31 | 
          22.46% | 
          2 | 
          16.67% | 
        
        
          | David Sterba | 
          22 | 
          15.94% | 
          4 | 
          33.33% | 
        
        
          | Christoph Hellwig | 
          16 | 
          11.59% | 
          1 | 
          8.33% | 
        
        
          | Jim Owens | 
          14 | 
          10.14% | 
          1 | 
          8.33% | 
        
        
          | Eric Paris | 
          6 | 
          4.35% | 
          1 | 
          8.33% | 
        
        
          | Zheng Yan | 
          5 | 
          3.62% | 
          1 | 
          8.33% | 
        
        
          | Stephen Hemminger | 
          1 | 
          0.72% | 
          1 | 
          8.33% | 
        
	  
	  
        
          | Total | 
          138 | 
           | 
          12 | 
           | 
	    
	  
    
 
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * Copyright (C) 2007 Red Hat.  All rights reserved.
 */
#ifndef BTRFS_XATTR_H
#define BTRFS_XATTR_H
#include <linux/xattr.h>
extern const struct xattr_handler *btrfs_xattr_handlers[];
int btrfs_getxattr(struct inode *inode, const char *name,
		void *buffer, size_t size);
int btrfs_setxattr(struct btrfs_trans_handle *trans, struct inode *inode,
		   const char *name, const void *value, size_t size, int flags);
int btrfs_setxattr_trans(struct inode *inode, const char *name,
			 const void *value, size_t size, int flags);
ssize_t btrfs_listxattr(struct dentry *dentry, char *buffer, size_t size);
int btrfs_xattr_security_init(struct btrfs_trans_handle *trans,
				     struct inode *inode, struct inode *dir,
				     const struct qstr *qstr);
#endif