diff options
Diffstat (limited to 'libglusterfs')
-rw-r--r-- | libglusterfs/src/Makefile.am | 2 | ||||
-rw-r--r-- | libglusterfs/src/iatt.h | 2 | ||||
-rw-r--r-- | libglusterfs/src/inode.h | 2 |
3 files changed, 5 insertions, 1 deletions
diff --git a/libglusterfs/src/Makefile.am b/libglusterfs/src/Makefile.am index f6c2cf855..3513419eb 100644 --- a/libglusterfs/src/Makefile.am +++ b/libglusterfs/src/Makefile.am @@ -1,6 +1,6 @@ libglusterfs_la_CFLAGS = -fPIC -Wall -g -shared -nostartfiles $(GF_CFLAGS) $(GF_DARWIN_LIBGLUSTERFS_CFLAGS) -libglusterfs_la_CPPFLAGS = -D_FILE_OFFSET_BITS=64 -D__USE_FILE_OFFSET64 -D_GNU_SOURCE -DXLATORDIR=\"$(libdir)/glusterfs/$(PACKAGE_VERSION)/xlator\" -D$(GF_HOST_OS) -I$(CONTRIBDIR)/rbtree -DSCHEDULERDIR=\"$(libdir)/glusterfs/$(PACKAGE_VERSION)/scheduler\" -I$(CONTRIBDIR)/md5 -I$(CONTRIBDIR)/uuid +libglusterfs_la_CPPFLAGS = -D_FILE_OFFSET_BITS=64 -D__USE_FILE_OFFSET64 -D_GNU_SOURCE -DXLATORDIR=\"$(libdir)/glusterfs/$(PACKAGE_VERSION)/xlator\" -D$(GF_HOST_OS) -I$(CONTRIBDIR)/rbtree -DSCHEDULERDIR=\"$(libdir)/glusterfs/$(PACKAGE_VERSION)/scheduler\" -I$(CONTRIBDIR)/md5 libglusterfs_la_LIBADD = @LEXLIB@ diff --git a/libglusterfs/src/iatt.h b/libglusterfs/src/iatt.h index ef64f9afc..e67d714c2 100644 --- a/libglusterfs/src/iatt.h +++ b/libglusterfs/src/iatt.h @@ -31,6 +31,7 @@ #include <unistd.h> #include "compat.h" +#include "uuid.h" typedef enum { IA_INVAL = 0, @@ -59,6 +60,7 @@ typedef struct { struct iatt { uint64_t ia_ino; /* inode number */ uint64_t ia_gen; /* generation number */ + uuid_t ia_gfid; uint64_t ia_dev; /* backing device ID */ ia_type_t ia_type; /* type of file */ ia_prot_t ia_prot; /* protection */ diff --git a/libglusterfs/src/inode.h b/libglusterfs/src/inode.h index 18081b8f8..a0bb8f8b5 100644 --- a/libglusterfs/src/inode.h +++ b/libglusterfs/src/inode.h @@ -40,6 +40,7 @@ typedef struct _dentry dentry_t; #include "list.h" #include "xlator.h" #include "iatt.h" +#include "uuid.h" struct _inode_table { @@ -94,6 +95,7 @@ struct _inode_ctx { struct _inode { inode_table_t *table; /* the table this inode belongs to */ + uuid_t gfid; gf_lock_t lock; uint64_t nlookup; uint64_t generation; |