Contributors: 7
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Josef Bacik |
43 |
38.05% |
1 |
10.00% |
David Sterba |
23 |
20.35% |
4 |
40.00% |
Christoph Hellwig |
17 |
15.04% |
1 |
10.00% |
Jim Owens |
13 |
11.50% |
1 |
10.00% |
Zheng Yan |
10 |
8.85% |
1 |
10.00% |
Eric Paris |
6 |
5.31% |
1 |
10.00% |
Stephen Hemminger |
1 |
0.88% |
1 |
10.00% |
Total |
113 |
|
10 |
|
/* 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);
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