From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755600AbdERXfE (ORCPT ); Thu, 18 May 2017 19:35:04 -0400 Received: from userp1040.oracle.com ([156.151.31.81]:29706 "EHLO userp1040.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754236AbdERXfB (ORCPT ); Thu, 18 May 2017 19:35:01 -0400 Date: Thu, 18 May 2017 16:34:39 -0700 From: "Darrick J. Wong" To: Christoph Hellwig Cc: Andy Shevchenko , Amir Goldstein , linux-fsdevel@vger.kernel.org, Shaohua Li , Dan Williams , David Howells , Steven Whitehouse , Mimi Zohar , linux-xfs@vger.kernel.org, linux-raid@vger.kernel.org, linux-nvdimm@ml01.01.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 02/23] xfs: use uuid_be to implement the uuid_t type Message-ID: <20170518233439.GF4519@birch.djwong.org> References: <20170518062705.25902-1-hch@lst.de> <20170518062705.25902-3-hch@lst.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170518062705.25902-3-hch@lst.de> User-Agent: Mutt/1.5.24 (2015-08-30) X-Source-IP: aserv0021.oracle.com [141.146.126.233] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, May 18, 2017 at 08:26:44AM +0200, Christoph Hellwig wrote: > 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 Reviewed-by: Darrick J. Wong --D > --- > fs/xfs/uuid.h | 4 ---- > fs/xfs/xfs_linux.h | 3 +++ > 2 files changed, 3 insertions(+), 4 deletions(-) > > diff --git a/fs/xfs/uuid.h b/fs/xfs/uuid.h > index 104db0f3bed6..4f1441ba4fa5 100644 > --- a/fs/xfs/uuid.h > +++ b/fs/xfs/uuid.h > @@ -18,10 +18,6 @@ > #ifndef __XFS_SUPPORT_UUID_H__ > #define __XFS_SUPPORT_UUID_H__ > > -typedef struct { > - unsigned char __u_bits[16]; > -} uuid_t; > - > extern int uuid_is_nil(uuid_t *uuid); > extern int uuid_equal(uuid_t *uuid1, uuid_t *uuid2); > extern void uuid_getnodeuniq(uuid_t *uuid, int fsid [2]); > 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 > +#include > > /* > * Kernel specific type declarations for XFS > @@ -38,6 +39,8 @@ typedef __s64 xfs_daddr_t; /* type */ > typedef __u32 xfs_dev_t; > typedef __u32 xfs_nlink_t; > > +typedef uuid_be uuid_t; > + > #include "xfs_types.h" > > #include "kmem.h" > -- > 2.11.0 > > -- > To unsubscribe from this list: send the line "unsubscribe linux-xfs" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html