Skip to content

Commit 1691cf1

Browse files
vinsonleekdave
authored andcommitted
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: 6b526ed ("btrfs: introduce device delete by devid") Signed-off-by: Vinson Lee <[email protected]> Signed-off-by: David Sterba <[email protected]>
1 parent 56244ef commit 1691cf1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/uapi/linux/btrfs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ struct btrfs_ioctl_vol_args_v2 {
118118
};
119119
union {
120120
char name[BTRFS_SUBVOL_NAME_MAX + 1];
121-
u64 devid;
121+
__u64 devid;
122122
};
123123
};
124124

0 commit comments

Comments
 (0)