Contributors: 9
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Josef Bacik |
67 |
48.20% |
1 |
5.88% |
Chris Mason |
25 |
17.99% |
4 |
23.53% |
David Sterba |
16 |
11.51% |
4 |
23.53% |
Jim Owens |
14 |
10.07% |
1 |
5.88% |
Theodore Y. Ts'o |
6 |
4.32% |
2 |
11.76% |
Christoph Hellwig |
6 |
4.32% |
1 |
5.88% |
Anand Jain |
3 |
2.16% |
2 |
11.76% |
Stephen Hemminger |
1 |
0.72% |
1 |
5.88% |
Wedson Almeida Filho |
1 |
0.72% |
1 |
5.88% |
Total |
139 |
|
17 |
|
/* 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 * const 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