projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
56244ef
)
btrfs: Use __u64 in exported linux/btrfs.h.
author
Vinson Lee
<vlee@freedesktop.org>
Sat, 28 May 2016 07:04:38 +0000
(07:04 +0000)
committer
David Sterba
<dsterba@suse.com>
Mon, 30 May 2016 11:50:02 +0000
(13:50 +0200)
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>
include/uapi/linux/btrfs.h
patch
|
blob
|
blame
|
history
diff --git
a/include/uapi/linux/btrfs.h
b/include/uapi/linux/btrfs.h
index 23c6960e94a4fa268dbd8286be6a993ebbd6ce12..2bdd1e3e70076dd3476e3398452c4837b2b80f9b 100644
(file)
--- a/
include/uapi/linux/btrfs.h
+++ b/
include/uapi/linux/btrfs.h
@@
-118,7
+118,7
@@
struct btrfs_ioctl_vol_args_v2 {
};
union {
char name[BTRFS_SUBVOL_NAME_MAX + 1];
- u64 devid;
+
__
u64 devid;
};
};