diff options
author | Jeff Darcy <jdarcy@redhat.com> | 2016-11-22 10:18:50 -0500 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2016-11-29 12:49:54 -0800 |
commit | e34a783557e504f0793f18beb850bcebbb2af7fa (patch) | |
tree | 839626884b3bb3e511cff93e494a7f3faf8292d3 /xlators/cluster/map/src/map.h | |
parent | 71dd2e914d4a537bf74e1ec3a24512fc83bacb1d (diff) |
all: remove dead translators
The following have been completely removed from the source tree,
makefiles, configure script, and RPM specfile.
cluster/afr/pump
cluster/ha
cluster/map
features/filter
features/mac-compat
features/path-convertor
features/protect
Change-Id: I2f966999ac3c180296ff90c1799548fba504f88f
Signed-off-by: Jeff Darcy <jdarcy@redhat.com>
Reviewed-on: http://review.gluster.org/15906
Smoke: Gluster Build System <jenkins@build.gluster.org>
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
CentOS-regression: Gluster Build System <jenkins@build.gluster.org>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'xlators/cluster/map/src/map.h')
-rw-r--r-- | xlators/cluster/map/src/map.h | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/xlators/cluster/map/src/map.h b/xlators/cluster/map/src/map.h deleted file mode 100644 index 7703a543e28..00000000000 --- a/xlators/cluster/map/src/map.h +++ /dev/null @@ -1,67 +0,0 @@ -/* - Copyright (c) 2008-2012 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 __MAP_H__ -#define __MAP_H__ - -#include "xlator.h" -#include "map-mem-types.h" - -struct map_pattern { - struct map_pattern *next; - xlator_t *xl; - char *directory; - int dir_len; -}; - -struct map_xlator_array { - xlator_t *xl; - int mapped; /* yes/no */ -}; - -typedef struct { - struct map_pattern *map; - xlator_t *default_xl; - struct map_xlator_array *xlarray; - int child_count; -} map_private_t; - -typedef struct { - int32_t op_ret; - int32_t op_errno; - int call_count; - struct statvfs statvfs; - struct iatt stbuf; - inode_t *inode; - dict_t *dict; - fd_t *fd; - - size_t size; -} map_local_t; - -xlator_t *map_subvol_next (xlator_t *this, xlator_t *prev); -int map_subvol_cnt (xlator_t *this, xlator_t *subvol); - -int map_itransform (xlator_t *this, xlator_t *subvol, - uint64_t x, uint64_t *y_p); -int map_deitransform (xlator_t *this, uint64_t y, - xlator_t **subvol_p, uint64_t *x_p); - - -xlator_t *get_mapping_subvol_from_path (xlator_t *this, const char *path); -xlator_t *get_mapping_subvol_from_ctx (xlator_t *this, inode_t *inode); - -int check_multiple_volume_entry (xlator_t *this, xlator_t *subvol); -int verify_dir_and_assign_subvol (xlator_t *this, - const char *directory, const char *subvol); -int assign_default_subvol (xlator_t *this, const char *default_xl); -void verify_if_all_subvolumes_got_used (xlator_t *this); - - -#endif /* __MAP_H__ */ |