diff options
author | Vinson Lee <vlee@freedesktop.org> | 2016-05-28 03:04:38 -0400 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2016-05-30 07:50:02 -0400 |
commit | 1691cf160048c0753036d0b3fad7f239234dab56 (patch) | |
tree | 5b774fdf61a877aea602a665cb98b513514c336c | |
parent | 56244ef151c3cd11f505020ab0b3f45454363bcc (diff) |
btrfs: Use __u64 in exported linux/btrfs.h.
This patch fixes this build error.
/usr/include/linux/btrfs.h:121:3: error: unknown type name ‘u64’
u64 devid;
^~~
Fixes: 6b526ed70cf1 ("btrfs: introduce device delete by devid")
Signed-off-by: Vinson Lee <vlee@freedesktop.org>
Signed-off-by: David Sterba <dsterba@suse.com>
-rw-r--r-- | include/uapi/linux/btrfs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/uapi/linux/btrfs.h b/include/uapi/linux/btrfs.h index 23c6960e94a4..2bdd1e3e7007 100644 --- a/include/uapi/linux/btrfs.h +++ b/include/uapi/linux/btrfs.h | |||
@@ -118,7 +118,7 @@ struct btrfs_ioctl_vol_args_v2 { | |||
118 | }; | 118 | }; |
119 | union { | 119 | union { |
120 | char name[BTRFS_SUBVOL_NAME_MAX + 1]; | 120 | char name[BTRFS_SUBVOL_NAME_MAX + 1]; |
121 | u64 devid; | 121 | __u64 devid; |
122 | }; | 122 | }; |
123 | }; | 123 | }; |
124 | 124 | ||