From 1a2f51144fcbd920a6f3769d6b2f3ceeefdc220d Mon Sep 17 00:00:00 2001 From: Raghavendra G Date: Thu, 14 Nov 2013 17:10:09 +0530 Subject: core: add dht_is_linkfile helper procedure. components other than distribute (like marker to exclude linkfiles from being accounted) also need awareness of what constitutes a linkfile. Hence its good to separate out this functionality into core. Change-Id: Ib944eeacc991bb1de464c9e73ee409fc7a689ff1 BUG: 1022995 Signed-off-by: Raghavendra G Reviewed-on: http://review.gluster.org/6152 Tested-by: Gluster Build System Reviewed-by: Anand Avati --- libglusterfs/src/glusterfs.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'libglusterfs/src/glusterfs.h') diff --git a/libglusterfs/src/glusterfs.h b/libglusterfs/src/glusterfs.h index 8f05a222d..997097384 100644 --- a/libglusterfs/src/glusterfs.h +++ b/libglusterfs/src/glusterfs.h @@ -171,6 +171,16 @@ */ #define DEFAULT_GLUSTERD_SOCKFILE DATADIR "/run/glusterd.socket" +/* features/marker-quota also needs to have knowledge of link-files so as to + * exclude them from accounting. + */ +#define DHT_LINKFILE_MODE (S_ISVTX) + +#define IS_DHT_LINKFILE_MODE(iabuf) ((st_mode_from_ia ((iabuf)->ia_prot, \ + (iabuf)->ia_type) & ~S_IFMT)\ + == DHT_LINKFILE_MODE) +#define DHT_LINKFILE_STR "linkto" + /* NOTE: add members ONLY at the end (just before _MAXVALUE) */ typedef enum { GF_FOP_NULL = 0, -- cgit