mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-27 14:03:43 +03:00
Merge pull request #12 from systemd-mailing-devs/1433236104-9967-1-git-send-email-m.olbrich@pengutronix.de
missing: add more btrfs defines
This commit is contained in:
commit
8066f9e66b
@ -269,6 +269,11 @@ struct btrfs_qgroup_inherit {
|
|||||||
__u64 qgroups[0];
|
__u64 qgroups[0];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct btrfs_ioctl_qgroup_limit_args {
|
||||||
|
__u64 qgroupid;
|
||||||
|
struct btrfs_qgroup_limit lim;
|
||||||
|
};
|
||||||
|
|
||||||
struct btrfs_ioctl_vol_args_v2 {
|
struct btrfs_ioctl_vol_args_v2 {
|
||||||
__s64 fd;
|
__s64 fd;
|
||||||
__u64 transid;
|
__u64 transid;
|
||||||
@ -360,6 +365,14 @@ struct btrfs_ioctl_clone_range_args {
|
|||||||
__u64 src_offset, src_length;
|
__u64 src_offset, src_length;
|
||||||
__u64 dest_offset;
|
__u64 dest_offset;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#define BTRFS_QUOTA_CTL_ENABLE 1
|
||||||
|
#define BTRFS_QUOTA_CTL_DISABLE 2
|
||||||
|
#define BTRFS_QUOTA_CTL_RESCAN__NOTUSED 3
|
||||||
|
struct btrfs_ioctl_quota_ctl_args {
|
||||||
|
__u64 cmd;
|
||||||
|
__u64 status;
|
||||||
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef BTRFS_IOC_DEFRAG
|
#ifndef BTRFS_IOC_DEFRAG
|
||||||
@ -367,6 +380,11 @@ struct btrfs_ioctl_clone_range_args {
|
|||||||
struct btrfs_ioctl_vol_args)
|
struct btrfs_ioctl_vol_args)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef BTRFS_IOC_RESIZE
|
||||||
|
#define BTRFS_IOC_RESIZE _IOW(BTRFS_IOCTL_MAGIC, 3, \
|
||||||
|
struct btrfs_ioctl_vol_args)
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef BTRFS_IOC_CLONE
|
#ifndef BTRFS_IOC_CLONE
|
||||||
#define BTRFS_IOC_CLONE _IOW(BTRFS_IOCTL_MAGIC, 9, int)
|
#define BTRFS_IOC_CLONE _IOW(BTRFS_IOCTL_MAGIC, 9, int)
|
||||||
#endif
|
#endif
|
||||||
@ -424,6 +442,16 @@ struct btrfs_ioctl_clone_range_args {
|
|||||||
struct btrfs_ioctl_vol_args)
|
struct btrfs_ioctl_vol_args)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef BTRFS_IOC_QUOTA_CTL
|
||||||
|
#define BTRFS_IOC_QUOTA_CTL _IOWR(BTRFS_IOCTL_MAGIC, 40, \
|
||||||
|
struct btrfs_ioctl_quota_ctl_args)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef BTRFS_IOC_QGROUP_LIMIT
|
||||||
|
#define BTRFS_IOC_QGROUP_LIMIT _IOR(BTRFS_IOCTL_MAGIC, 43, \
|
||||||
|
struct btrfs_ioctl_qgroup_limit_args)
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef BTRFS_FIRST_FREE_OBJECTID
|
#ifndef BTRFS_FIRST_FREE_OBJECTID
|
||||||
#define BTRFS_FIRST_FREE_OBJECTID 256
|
#define BTRFS_FIRST_FREE_OBJECTID 256
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user