aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_linux.h
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2017-05-05 09:53:09 +0200
committerChristoph Hellwig <hch@lst.de>2017-06-05 16:56:36 +0200
commitb1f359f9805c2a1ec0f57e08b74baf383eb4b6a9 (patch)
treee30d1c9e46f4ab0f3ee818b7ee77c46538013eab /fs/xfs/xfs_linux.h
parentxfs: use uuid_copy() helper to abstract uuid_t (diff)
downloadlinux-dev-b1f359f9805c2a1ec0f57e08b74baf383eb4b6a9.tar.xz
linux-dev-b1f359f9805c2a1ec0f57e08b74baf383eb4b6a9.zip
xfs: use uuid_be to implement the uuid_t type
Use the generic Linux definition to implement our UUID type, this will allow using more generic infrastructure in the future. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Amir Goldstein <amir73il@gmail.com> Reviewed-by: Brian Foster <bfoster@redhat.com> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to '')
-rw-r--r--fs/xfs/xfs_linux.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/xfs/xfs_linux.h b/fs/xfs/xfs_linux.h
index 044fb0e15390..89ee5ec66837 100644
--- a/fs/xfs/xfs_linux.h
+++ b/fs/xfs/xfs_linux.h
@@ -19,6 +19,7 @@
#define __XFS_LINUX__
#include <linux/types.h>
+#include <linux/uuid.h>
/*
* Kernel specific type declarations for XFS
@@ -38,6 +39,8 @@ typedef __s64 xfs_daddr_t; /* <disk address> type */
typedef __u32 xfs_dev_t;
typedef __u32 xfs_nlink_t;
+typedef uuid_be uuid_t;
+
#include "xfs_types.h"
#include "kmem.h"