Contributors: 15
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Chris Mason |
30 |
18.40% |
4 |
14.81% |
Josef Whiter |
28 |
17.18% |
2 |
7.41% |
Mark Harmstone |
21 |
12.88% |
1 |
3.70% |
Christoph Hellwig |
20 |
12.27% |
2 |
7.41% |
Miklos Szeredi |
17 |
10.43% |
1 |
3.70% |
David Sterba |
14 |
8.59% |
5 |
18.52% |
Jeff Mahoney |
10 |
6.13% |
3 |
11.11% |
Johannes Thumshirn |
6 |
3.68% |
1 |
3.70% |
Miao Xie |
4 |
2.45% |
1 |
3.70% |
Ilya Dryomov |
4 |
2.45% |
1 |
3.70% |
Zheng Yan |
3 |
1.84% |
2 |
7.41% |
Luke Dashjr |
2 |
1.23% |
1 |
3.70% |
Christian Brauner |
2 |
1.23% |
1 |
3.70% |
Alexander Block |
1 |
0.61% |
1 |
3.70% |
Stefan Behrens |
1 |
0.61% |
1 |
3.70% |
Total |
163 |
|
27 |
|
12345678910111213141516171819202122232425262728
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef BTRFS_IOCTL_H
#define BTRFS_IOCTL_H
#include <linux/types.h>
struct file;
struct dentry;
struct mnt_idmap;
struct fileattr;
struct btrfs_fs_info;
struct btrfs_ioctl_balance_args;
long btrfs_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
long btrfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
int btrfs_fileattr_get(struct dentry *dentry, struct fileattr *fa);
int btrfs_fileattr_set(struct mnt_idmap *idmap,
struct dentry *dentry, struct fileattr *fa);
int btrfs_ioctl_get_supported_features(void __user *arg);
void btrfs_sync_inode_flags_to_i_flags(struct inode *inode);
int __pure btrfs_is_empty_uuid(const u8 *uuid);
void btrfs_update_ioctl_balance_args(struct btrfs_fs_info *fs_info,
struct btrfs_ioctl_balance_args *bargs);
int btrfs_uring_cmd(struct io_uring_cmd *cmd, unsigned int issue_flags);
void btrfs_uring_read_extent_endio(void *ctx, int err);
#endif