Skip to content

Commit

Permalink
Btrfs: use __u64 types in ioctl.h
Browse files Browse the repository at this point in the history
Signed-off-by: Sage Weil <sage@newdream.net>
Signed-off-by: Chris Mason <chris.mason@oracle.com>
  • Loading branch information
Sage Weil authored and Chris Mason committed Mar 16, 2010
1 parent 854d2c3 commit ce769a2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions fs/btrfs/ioctl.h
Original file line number Diff line number Diff line change
Expand Up @@ -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];
};

Expand Down

0 comments on commit ce769a2

Please sign in to comment.