Contributors: 11
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Josef Bacik |
64 |
42.38% |
1 |
4.76% |
Chris Mason |
25 |
16.56% |
4 |
19.05% |
David Sterba |
21 |
13.91% |
5 |
23.81% |
Jim Owens |
14 |
9.27% |
1 |
4.76% |
Johannes Thumshirn |
8 |
5.30% |
1 |
4.76% |
Christoph Hellwig |
6 |
3.97% |
1 |
4.76% |
Theodore Y. Ts'o |
6 |
3.97% |
2 |
9.52% |
Anand Jain |
3 |
1.99% |
2 |
9.52% |
Ilya Dryomov |
2 |
1.32% |
2 |
9.52% |
Wedson Almeida Filho |
1 |
0.66% |
1 |
4.76% |
Stephen Hemminger |
1 |
0.66% |
1 |
4.76% |
Total |
151 |
|
21 |
|
/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (C) 2007 Red Hat. All rights reserved.
*/
#ifndef BTRFS_XATTR_H
#define BTRFS_XATTR_H
struct dentry;
struct inode;
struct qstr;
struct xattr_handler;
struct btrfs_trans_handle;
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