diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-08-23 11:41:44 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-08-23 11:41:44 -0700 |
commit | 35a177a08d14f238d89d7f03918d3e0482af3240 (patch) | |
tree | 72a71fe4cec13e079e182633a62ea9219dbde656 /fs/xfs/uuid.h | |
parent | a76ef86455fd8d199d482acc402675e4dcbe58fe (diff) | |
parent | b6bede3b4cdfbd188557ab50fceec2e91d295edf (diff) |
Merge branch 'for-linus' of git://oss.sgi.com/xfs/xfs
* 'for-linus' of git://oss.sgi.com/xfs/xfs:
xfs: fix tracing builds inside the source tree
xfs: remove subdirectories
xfs: don't expect xfs headers to be in subdirectories
Diffstat (limited to 'fs/xfs/uuid.h')
-rw-r--r-- | fs/xfs/uuid.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/fs/xfs/uuid.h b/fs/xfs/uuid.h new file mode 100644 index 00000000000..4732d71262c --- /dev/null +++ b/fs/xfs/uuid.h @@ -0,0 +1,29 @@ +/* + * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc. + * All Rights Reserved. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation. + * + * This program is distributed in the hope that it would be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ +#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]); + +#endif /* __XFS_SUPPORT_UUID_H__ */ |