diff options
Diffstat (limited to 'libglusterfs')
| -rw-r--r-- | libglusterfs/src/Makefile.am | 3 | ||||
| -rw-r--r-- | libglusterfs/src/glusterfs.h | 18 | ||||
| -rw-r--r-- | libglusterfs/src/upcall-utils.h | 38 | 
3 files changed, 40 insertions, 19 deletions
diff --git a/libglusterfs/src/Makefile.am b/libglusterfs/src/Makefile.am index cdec56a2b51..f9accdf42f1 100644 --- a/libglusterfs/src/Makefile.am +++ b/libglusterfs/src/Makefile.am @@ -47,7 +47,8 @@ noinst_HEADERS = common-utils.h defaults.h dict.h glusterfs.h hashfn.h timespec.  	$(CONTRIBDIR)/mount/mntent_compat.h lvm-defaults.h \  	$(CONTRIBDIR)/libexecinfo/execinfo_compat.h \  	unittest/unittest.h quota-common-utils.h rot-buffs.h \ -	$(CONTRIBDIR)/timer-wheel/timer-wheel.h compat-uuid.h +	$(CONTRIBDIR)/timer-wheel/timer-wheel.h compat-uuid.h \ +	upcall-utils.h  if !HAVE_LIBUUID  # FIXME: unbundle libuuid, see compat-uuid.h. diff --git a/libglusterfs/src/glusterfs.h b/libglusterfs/src/glusterfs.h index 78398310a39..d8d92ad7546 100644 --- a/libglusterfs/src/glusterfs.h +++ b/libglusterfs/src/glusterfs.h @@ -369,12 +369,6 @@ typedef enum {          GF_XATTROP_AND_ARRAY  } gf_xattrop_flags_t; - -typedef enum { -        GF_UPCALL_EVENT_NULL, -        GF_UPCALL_CACHE_INVALIDATION, -} gf_upcall_event_t; -  #define GF_SET_IF_NOT_PRESENT 0x1 /* default behaviour */  #define GF_SET_OVERWRITE      0x2 /* Overwrite with the buf given */  #define GF_SET_DIR_ONLY       0x4 @@ -613,18 +607,6 @@ struct gf_flock {          gf_lkowner_t l_owner;  }; -struct gf_upcall { -        char   *client_uid; -        uuid_t gfid; -        u_int  event_type; -        void   *data; -}; - -struct gf_upcall_cache_invalidation { -        u_int flags; -        u_int expire_time_attr; -}; -  #define GF_MUST_CHECK __attribute__((warn_unused_result))  /*   * Some macros (e.g. ALLOC_OR_GOTO) set variables in function scope, but the diff --git a/libglusterfs/src/upcall-utils.h b/libglusterfs/src/upcall-utils.h new file mode 100644 index 00000000000..001566fd85e --- /dev/null +++ b/libglusterfs/src/upcall-utils.h @@ -0,0 +1,38 @@ +/* +  Copyright (c) 2015, Red Hat, Inc. <http://www.redhat.com> +  This file is part of GlusterFS. + +  This file is licensed to you under your choice of the GNU Lesser +  General Public License, version 3 or any later version (LGPLv3 or +  later), or the GNU General Public License, version 2 (GPLv2), in all +  cases as published by the Free Software Foundation. +*/ + +#ifndef _UPCALL_UTILS_H +#define _UPCALL_UTILS_H + +#include "iatt.h" +#include "compat-uuid.h" +#include "compat.h" + +typedef enum { +        GF_UPCALL_EVENT_NULL, +        GF_UPCALL_CACHE_INVALIDATION, +} gf_upcall_event_t; + +struct gf_upcall { +        char      *client_uid; +        uuid_t    gfid; +        uint32_t  event_type; +        void      *data; +}; + +struct gf_upcall_cache_invalidation { +        uint32_t flags; +        uint32_t expire_time_attr; +        struct iatt stat; +        struct iatt p_stat; /* parent dir stat */ +        struct iatt oldp_stat; /* oldparent dir stat */ +}; + +#endif /* _UPCALL_UTILS_H */  | 
