aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/ioctl.h
diff options
context:
space:
mode:
authorSage Weil <sage@newdream.net>2010-03-15 20:02:26 -0400
committerChris Mason <chris.mason@oracle.com>2010-03-16 14:24:27 -0400
commitce769a2904bf5a9110ef534a7702397e38e2b3e9 (patch)
treef783a7e8ca35053f534ad2bc64e52bf0d08442c2 /fs/btrfs/ioctl.h
parent854d2c3531e6d32e76b94ca5e096ea54c7497e40 (diff)
Btrfs: use __u64 types in ioctl.h
Signed-off-by: Sage Weil <sage@newdream.net> Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/ioctl.h')
-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