[PATCH v11 07/12] btrfs_tree.h: fix include from userland

From: Nicolas Dichtel
Date: Mon Mar 27 2017 - 08:23:20 EST


This patch prepares the uapi export by fixing the following errors:

.../linux/btrfs_tree.h:283:2: error: #error "UUID items require BTRFS_UUID_SIZE == 16!"
#error "UUID items require BTRFS_UUID_SIZE == 16!"

.../linux/btrfs_tree.h:390:12: error: âBTRFS_UUID_SIZEâ undeclared here (not in a function)
__u8 uuid[BTRFS_UUID_SIZE];
^
.../linux/btrfs_tree.h:796:16: error: âBTRFS_DEV_STAT_VALUES_MAXâ undeclared here (not in a function)
__le64 values[BTRFS_DEV_STAT_VALUES_MAX];

Signed-off-by: Nicolas Dichtel <nicolas.dichtel@xxxxxxxxx>
---
include/uapi/linux/btrfs_tree.h | 1 +
1 file changed, 1 insertion(+)

diff --git a/include/uapi/linux/btrfs_tree.h b/include/uapi/linux/btrfs_tree.h
index 6a261cb52d95..10689e1fdf11 100644
--- a/include/uapi/linux/btrfs_tree.h
+++ b/include/uapi/linux/btrfs_tree.h
@@ -1,6 +1,7 @@
#ifndef _BTRFS_CTREE_H_
#define _BTRFS_CTREE_H_

+#include <linux/btrfs.h>
#include <linux/types.h>

/*
--
2.8.1