diff options
author | Sage Weil <sage@newdream.net> | 2010-03-16 00:02:26 +0000 |
---|---|---|
committer | Chris Mason <chris.mason@oracle.com> | 2010-03-16 14:24:27 -0400 |
commit | ce769a2904bf5a9110ef534a7702397e38e2b3e9 (patch) | |
tree | f783a7e8ca35053f534ad2bc64e52bf0d08442c2 /fs | |
parent | 854d2c3531e6d32e76b94ca5e096ea54c7497e40 (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')
-rw-r--r-- | fs/btrfs/ioctl.h | 10 |
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 { }; struct btrfs_ioctl_space_info { - u64 flags; - u64 total_bytes; - u64 used_bytes; + __u64 flags; + __u64 total_bytes; + __u64 used_bytes; }; struct btrfs_ioctl_space_args { - u64 space_slots; - u64 total_spaces; + __u64 space_slots; + __u64 total_spaces; struct btrfs_ioctl_space_info spaces[0]; }; |