aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/btrfs/ioctl.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/btrfs/ioctl.h b/fs/btrfs/ioctl.h
index 81eac0a59ea3..424694aa517f 100644
--- a/fs/btrfs/ioctl.h
+++ b/fs/btrfs/ioctl.h
@@ -127,14 +127,14 @@ struct btrfs_ioctl_defrag_range_args {
127}; 127};
128 128
129struct btrfs_ioctl_space_info { 129struct btrfs_ioctl_space_info {
130 u64 flags; 130 __u64 flags;
131 u64 total_bytes; 131 __u64 total_bytes;
132 u64 used_bytes; 132 __u64 used_bytes;
133}; 133};
134 134
135struct btrfs_ioctl_space_args { 135struct btrfs_ioctl_space_args {
136 u64 space_slots; 136 __u64 space_slots;
137 u64 total_spaces; 137 __u64 total_spaces;
138 struct btrfs_ioctl_space_info spaces[0]; 138 struct btrfs_ioctl_space_info spaces[0];
139}; 139};
140 140