diff options
| author | N Balachandran <nbalacha@redhat.com> | 2018-01-19 11:42:46 +0530 | 
|---|---|---|
| committer | N Balachandran <nbalacha@redhat.com> | 2018-01-30 19:08:09 +0530 | 
| commit | af161b0ed5940751bf64ed17b8d49c115e687886 (patch) | |
| tree | 4d06fed859095a973c94aa81b6fe6004c40befe9 | |
| parent | f731824440c218999437412c569bacacf213d191 (diff) | |
cluster/dht: Add migration checks to dht_(f)xattrop
The dht_(f)xattrop implementation did not implement
migration phase1/phase2 checks which could cause issues
with rebalance on sharded volumes.
This does not solve the issue where fops may reach the target
out of order.
> Change-Id: I2416fc35115e60659e35b4b717fd51f20746586c
> BUG: 1471031
> Signed-off-by: N Balachandran <nbalacha@redhat.com>
Change-Id: I2416fc35115e60659e35b4b717fd51f20746586c
BUG: 1498081
Signed-off-by: N Balachandran <nbalacha@redhat.com>
| -rw-r--r-- | libglusterfs/src/glusterfs.h | 1 | ||||
| -rw-r--r-- | xlators/cluster/dht/src/dht-common.c | 44 | ||||
| -rw-r--r-- | xlators/cluster/dht/src/dht-common.h | 11 | ||||
| -rw-r--r-- | xlators/cluster/dht/src/dht-helper.c | 3 | ||||
| -rw-r--r-- | xlators/cluster/dht/src/dht-inode-read.c | 238 | ||||
| -rw-r--r-- | xlators/cluster/dht/src/dht-rebalance.c | 91 | ||||
| -rw-r--r-- | xlators/storage/posix/src/posix-helpers.c | 34 | ||||
| -rw-r--r-- | xlators/storage/posix/src/posix.c | 1 | ||||
| -rw-r--r-- | xlators/storage/posix/src/posix.h | 3 | 
9 files changed, 373 insertions, 53 deletions
diff --git a/libglusterfs/src/glusterfs.h b/libglusterfs/src/glusterfs.h index 3c4013bd98c..f8ecaac0ff9 100644 --- a/libglusterfs/src/glusterfs.h +++ b/libglusterfs/src/glusterfs.h @@ -266,6 +266,7 @@  #define TIER_LINKFILE_GFID           "tier-linkfile-gfid"  #define DHT_SKIP_OPEN_FD_UNLINK     "dont-unlink-for-open-fd"  #define DHT_IATT_IN_XDATA_KEY       "dht-get-iatt-in-xattr" +#define DHT_MODE_IN_XDATA_KEY       "dht-get-mode-in-xattr"  #define GET_LINK_COUNT              "get-link-count"  /*CTR and Marker requires inode dentry link count from posix*/ diff --git a/xlators/cluster/dht/src/dht-common.c b/xlators/cluster/dht/src/dht-common.c index 232f757e74a..bd2fb857300 100644 --- a/xlators/cluster/dht/src/dht-common.c +++ b/xlators/cluster/dht/src/dht-common.c @@ -45,6 +45,10 @@ int  dht_rmdir_readdirp_do (call_frame_t *readdirp_frame, xlator_t *this); +int +dht_common_xattrop_cbk (call_frame_t *frame, void *cookie, xlator_t *this, +                        int32_t op_ret, int32_t op_errno, dict_t *dict, +                        dict_t *xdata);  /* Sets the blocks and size values to fixed values. This is to be called   * only for dirs. The caller is responsible for checking the type @@ -59,6 +63,46 @@ int32_t dht_set_fixed_dir_stat (struct iatt *stat)          return -1;  } +/* Set both DHT_IATT_IN_XDATA_KEY and DHT_MODE_IN_XDATA_KEY + * Use DHT_MODE_IN_XDATA_KEY if available. Else fall back to + * DHT_IATT_IN_XDATA_KEY + */ +int dht_request_iatt_in_xdata (xlator_t *this, dict_t *xattr_req) +{ +        int ret = -1; + +        ret = dict_set_int8 (xattr_req, DHT_MODE_IN_XDATA_KEY, 1); +        ret = dict_set_int8 (xattr_req, DHT_IATT_IN_XDATA_KEY, 1); + +        /* At least one call succeeded */ +        return ret; +} + + +/* Get both DHT_IATT_IN_XDATA_KEY and DHT_MODE_IN_XDATA_KEY + * Use DHT_MODE_IN_XDATA_KEY if available, else fall back to + * DHT_IATT_IN_XDATA_KEY + * This will return a dummy iatt with only the mode and type set + */ +int dht_read_iatt_from_xdata (xlator_t *this, dict_t *xdata, +                              struct iatt *stbuf) +{ +        int ret = -1; +        int32_t mode = 0; + +        ret = dict_get_int32 (xdata, DHT_MODE_IN_XDATA_KEY, &mode); + +        if (ret) { +                ret = dict_get_bin (xdata, DHT_IATT_IN_XDATA_KEY, +                                    (void **)&stbuf); +        } else { +                stbuf->ia_prot = ia_prot_from_st_mode (mode); +                stbuf->ia_type = ia_type_from_st_mode (mode); +        } + +        return ret; +} +  int  dht_rmdir_unlock (call_frame_t *frame, xlator_t *this); diff --git a/xlators/cluster/dht/src/dht-common.h b/xlators/cluster/dht/src/dht-common.h index 09235f6f969..cb0544f9b33 100644 --- a/xlators/cluster/dht/src/dht-common.h +++ b/xlators/cluster/dht/src/dht-common.h @@ -130,6 +130,7 @@ struct dht_rebalance_ {          dht_defrag_cbk_fn_t  target_op_fn;          dict_t              *xdata;          dict_t              *xattr; +        dict_t              *dict;          int32_t              set;          struct gf_flock      flock;          int                  lock_cmd; @@ -1378,4 +1379,14 @@ dht_file_removexattr_cbk (call_frame_t *frame, void *cookie, xlator_t *this,  int  dht_file_setxattr_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                         int op_ret, int op_errno, dict_t *xdata); + + +/* Abstract out the DHT-IATT-IN-DICT */ + + +int dht_request_iatt_in_xdata (xlator_t *this, dict_t *xattr_req); + +int dht_read_iatt_from_xdata (xlator_t *this, dict_t *xdata, +                              struct iatt *stbuf); +  #endif/* _DHT_H */ diff --git a/xlators/cluster/dht/src/dht-helper.c b/xlators/cluster/dht/src/dht-helper.c index 5afd5ef8152..6c9e8c00bfc 100644 --- a/xlators/cluster/dht/src/dht-helper.c +++ b/xlators/cluster/dht/src/dht-helper.c @@ -949,6 +949,9 @@ dht_local_wipe (xlator_t *this, dht_local_t *local)          if (local->rebalance.xattr)                  dict_unref (local->rebalance.xattr); +        if (local->rebalance.dict) +                dict_unref (local->rebalance.dict); +          GF_FREE (local->rebalance.vector);          if (local->rebalance.iobref) diff --git a/xlators/cluster/dht/src/dht-inode-read.c b/xlators/cluster/dht/src/dht-inode-read.c index a9e47664a81..e789e1f305a 100644 --- a/xlators/cluster/dht/src/dht-inode-read.c +++ b/xlators/cluster/dht/src/dht-inode-read.c @@ -24,7 +24,9 @@ int dht_lk2 (xlator_t *this, xlator_t *dst_node,               call_frame_t *frame, int ret);  int dht_fsync2 (xlator_t *this, xlator_t *dst_node,                  call_frame_t *frame, int ret); - +int +dht_common_xattrop2 (xlator_t *this, xlator_t *subvol, call_frame_t *frame, +                     int ret);  int @@ -1246,9 +1248,159 @@ err:          return 0;  } -/* Currently no translators on top of 'distribute' will be using - * below fops, hence not implementing 'migration' related checks - */ + +int +dht_common_xattrop_cbk (call_frame_t *frame, void *cookie, xlator_t *this, +                        int32_t op_ret, int32_t op_errno, dict_t *dict, +                        dict_t *xdata) +{ +        dht_local_t  *local          = NULL; +        call_frame_t *call_frame     = NULL; +        xlator_t     *prev           = NULL; +        xlator_t     *src_subvol     = NULL; +        xlator_t     *dst_subvol     = NULL; +        struct iatt   stbuf          = {0,}; +        int           ret            = -1; +        inode_t      *inode          = NULL; + +        local = frame->local; +        call_frame = cookie; +        prev = call_frame->this; + +        local->op_errno = op_errno; + +        if ((op_ret == -1) && !dht_inode_missing (op_errno)) { +                gf_msg_debug (this->name, op_errno, +                              "subvolume %s returned -1.", +                              prev->name); +                goto out; +        } + +        if (local->call_cnt != 1) +                goto out; + +        ret = dht_read_iatt_from_xdata (this, xdata, &stbuf); + +        if ((!op_ret) && (ret)) { +                /* This is a potential problem and can cause corruption +                 * with sharding. +                 * Oh well. We tried. +                 */ +                goto out; +        } + +        local->op_ret = op_ret; +        local->rebalance.target_op_fn = dht_common_xattrop2; +        if (xdata) +                local->rebalance.xdata = dict_ref (xdata); + +        if (dict) +                local->rebalance.dict = dict_ref (dict); + +        /* Phase 2 of migration */ +        if ((op_ret == -1) || IS_DHT_MIGRATION_PHASE2 (&stbuf)) { +                ret = dht_rebalance_complete_check (this, frame); +                if (!ret) +                        return 0; +        } + +        /* Check if the rebalance phase1 is true */ +        if (IS_DHT_MIGRATION_PHASE1 (&stbuf)) { + +                inode = local->loc.inode ? local->loc.inode : local->fd->inode; +                dht_inode_ctx_get_mig_info (this, inode, &src_subvol, +                                            &dst_subvol); + +                if (dht_mig_info_is_invalid (local->cached_subvol, src_subvol, +                                             dst_subvol) || +                      !dht_fd_open_on_dst (this, local->fd, dst_subvol)) { + +                        ret = dht_rebalance_in_progress_check (this, frame); +                        if (!ret) +                                return 0; +                } else { +                        dht_common_xattrop2 (this, dst_subvol, frame, 0); +                        return 0; +                } +        } + + +out: +        if (local->fop == GF_FOP_XATTROP) { +                DHT_STACK_UNWIND (xattrop, frame, op_ret, op_errno, +                                  dict, xdata); +        } else { +                DHT_STACK_UNWIND (fxattrop, frame, op_ret, op_errno, +                                  dict, xdata); +        } + +        return 0; +} + + +int +dht_common_xattrop2 (xlator_t *this, xlator_t *subvol, call_frame_t *frame, +                     int ret) +{ +        dht_local_t *local    = NULL; +        int32_t      op_errno = EINVAL; + +        if ((frame == NULL) || (frame->local == NULL)) +                goto out; + +        local = frame->local; +        op_errno = local->op_errno; + +        if (we_are_not_migrating (ret)) { +                /* This dht xlator is not migrating the file. Unwind and +                 * pass on the original mode bits so the higher DHT layer +                 * can handle this. +                 */ +                if (local->fop == GF_FOP_XATTROP) { +                        DHT_STACK_UNWIND (xattrop, frame, local->op_ret, +                                          op_errno, local->rebalance.dict, +                                          local->rebalance.xdata); +                } else { +                        DHT_STACK_UNWIND (fxattrop, frame, local->op_ret, +                                          op_errno, local->rebalance.dict, +                                          local->rebalance.xdata); +                } + +                return 0; +        } + +        if (subvol == NULL) +                goto out; + +        local->call_cnt = 2; /* This is the second attempt */ + +        if (local->fop == GF_FOP_XATTROP) { +                STACK_WIND (frame, dht_common_xattrop_cbk, subvol, +                            subvol->fops->xattrop, &local->loc, +                            local->rebalance.flags, local->rebalance.xattr, +                            local->xattr_req); +        } else { +                STACK_WIND (frame, dht_common_xattrop_cbk, subvol, +                            subvol->fops->fxattrop, local->fd, +                            local->rebalance.flags, local->rebalance.xattr, +                            local->xattr_req); +        } + +        return 0; + +out: + +        /* If local is unavailable we could be unwinding the wrong +         * function here */ + +        if (local && (local->fop == GF_FOP_XATTROP)) { +                DHT_STACK_UNWIND (xattrop, frame, -1, op_errno, NULL, NULL); +        } else { +                DHT_STACK_UNWIND (fxattrop, frame, -1, op_errno, NULL, NULL); +        } +        return 0; +} +  int  dht_xattrop_cbk (call_frame_t *frame, void *cookie, xlator_t *this, @@ -1263,9 +1415,10 @@ int  dht_xattrop (call_frame_t *frame, xlator_t *this, loc_t *loc,               gf_xattrop_flags_t flags, dict_t *dict, dict_t *xdata)  { -        xlator_t     *subvol = NULL; +        xlator_t     *subvol   = NULL;          int           op_errno = -1; -        dht_local_t  *local = NULL; +        dht_local_t  *local    = NULL; +        int           ret      = -1;          VALIDATE_OR_GOTO (frame, err);          VALIDATE_OR_GOTO (this, err); @@ -1287,11 +1440,33 @@ dht_xattrop (call_frame_t *frame, xlator_t *this, loc_t *loc,                  goto err;          } -        local->call_cnt = 1; +        /* Todo : Handle dirs as well. At the moment the only xlator above dht +         * that uses xattrop is sharding and that is only for files */ + +        if (IA_ISDIR (loc->inode->ia_type)) { +                STACK_WIND (frame, dht_xattrop_cbk, subvol, +                            subvol->fops->xattrop, loc, flags, dict, xdata); + +        } else { +                local->xattr_req = xdata ? dict_ref(xdata) : dict_new (); +                local->call_cnt = 1; -        STACK_WIND (frame, dht_xattrop_cbk, -                    subvol, subvol->fops->xattrop, -                    loc, flags, dict, xdata); +                local->rebalance.xattr = dict_ref (dict); +                local->rebalance.flags = flags; + +                ret = dht_request_iatt_in_xdata (this, local->xattr_req); + +                if (ret) { +                        gf_msg_debug (this->name, 0, +                                      "Failed to set dictionary key %s file=%s", +                                      DHT_IATT_IN_XDATA_KEY, loc->path); +                } + +                STACK_WIND (frame, dht_common_xattrop_cbk, subvol, +                            subvol->fops->xattrop, loc, +                            local->rebalance.flags, local->rebalance.xattr, +                            local->xattr_req); +        }          return 0; @@ -1318,6 +1493,8 @@ dht_fxattrop (call_frame_t *frame, xlator_t *this,  {          xlator_t     *subvol = NULL;          int           op_errno = -1; +        dht_local_t  *local    = NULL; +        int           ret      = -1;          VALIDATE_OR_GOTO (frame, err);          VALIDATE_OR_GOTO (this, err); @@ -1331,10 +1508,39 @@ dht_fxattrop (call_frame_t *frame, xlator_t *this,                  goto err;          } -        STACK_WIND (frame, -                    dht_fxattrop_cbk, -                    subvol, subvol->fops->fxattrop, -                    fd, flags, dict, xdata); +        local = dht_local_init (frame, NULL, fd, GF_FOP_FXATTROP); +        if (!local) { +                op_errno = ENOMEM; +                goto err; +        } + +        /* Todo : Handle dirs as well. At the moment the only xlator above dht +         * that uses xattrop is sharding and that is only for files */ + +        if (IA_ISDIR (fd->inode->ia_type)) { +                STACK_WIND (frame, dht_fxattrop_cbk, subvol, +                            subvol->fops->fxattrop, fd, flags, dict, xdata); + +        } else { +                local->xattr_req = xdata ? dict_ref(xdata) : dict_new (); +                local->call_cnt = 1; + +                local->rebalance.xattr = dict_ref (dict); +                local->rebalance.flags = flags; + +                ret = dht_request_iatt_in_xdata (this, local->xattr_req); + +                if (ret) { +                        gf_msg_debug (this->name, 0, +                                      "Failed to set dictionary key %s fd=%p", +                                      DHT_IATT_IN_XDATA_KEY, fd); +                } + +                STACK_WIND (frame, dht_common_xattrop_cbk, subvol, +                            subvol->fops->fxattrop, fd, +                            local->rebalance.flags, local->rebalance.xattr, +                            local->xattr_req); +        }          return 0; @@ -1346,6 +1552,10 @@ err:  } +/* Currently no translators on top of 'distribute' will be using + * below fops, hence not implementing 'migration' related checks + */ +  int  dht_inodelk_cbk (call_frame_t *frame, void *cookie,                   xlator_t *this, int32_t op_ret, int32_t op_errno, dict_t *xdata) diff --git a/xlators/cluster/dht/src/dht-rebalance.c b/xlators/cluster/dht/src/dht-rebalance.c index 6269effe2ee..902bddc8aa9 100644 --- a/xlators/cluster/dht/src/dht-rebalance.c +++ b/xlators/cluster/dht/src/dht-rebalance.c @@ -17,6 +17,7 @@  #include <fnmatch.h>  #include <signal.h>  #include "events.h" +#include "glusterfs-acl.h"  #define GF_DISK_SECTOR_SIZE             512  #define DHT_REBALANCE_PID               4242 /* Change it if required */ @@ -160,7 +161,14 @@ dht_send_rebalance_event (xlator_t *this, int cmd, gf_defrag_status_t status)  } - +static void +dht_strip_out_acls (dict_t *dict) +{ +        if (dict) { +                dict_del (dict, "trusted.SGI_ACL_FILE"); +                dict_del (dict, POSIX_ACL_ACCESS_XATTR); +        } +}  static int @@ -654,7 +662,7 @@ out:  static int  __dht_rebalance_create_dst_file (xlator_t *this, xlator_t *to, xlator_t *from,                                   loc_t *loc, struct iatt *stbuf, fd_t **dst_fd, -                                 dict_t *xattr, int *fop_errno) +                                 int *fop_errno)  {          int          ret  = -1;          fd_t        *fd   = NULL; @@ -799,28 +807,6 @@ __dht_rebalance_create_dst_file (xlator_t *this, xlator_t *to, xlator_t *from,                  goto out;          } -        ret = syncop_fsetxattr (to, fd, xattr, 0, NULL, NULL); -        if (ret < 0) { -                *fop_errno = -ret; -                gf_msg (this->name, GF_LOG_WARNING, 0, -                        DHT_MSG_MIGRATE_FILE_FAILED, -                        "%s: failed to set xattr on %s (%s)", -                        loc->path, to->name, strerror (-ret)); - -        } - -        /* TODO: Need to add a detailed comment about why we moved away from -        ftruncate. - -        ret = syncop_ftruncate (to, fd, stbuf->ia_size, NULL, NULL); -        if (ret < 0) { -                *fop_errno = -ret; -                gf_msg (this->name, GF_LOG_ERROR, 0, -                        DHT_MSG_MIGRATE_FILE_FAILED, -                        "ftruncate failed for %s on %s (%s)", -                        loc->path, to->name, strerror (-ret)); -        */ -          ret = syncop_fsetattr (to, fd, stbuf,                                 (GF_SET_ATTR_UID | GF_SET_ATTR_GID),                                  NULL, NULL, NULL, NULL); @@ -1676,21 +1662,9 @@ dht_migrate_file (xlator_t *this, loc_t *loc, xlator_t *from, xlator_t *to,          } -        /* TODO: move all xattr related operations to fd based operations */ -        ret = syncop_listxattr (from, loc, &xattr, NULL, NULL); -        if (ret < 0) { -                *fop_errno = -ret; -                ret = -1; -                gf_msg (this->name, GF_LOG_WARNING, 0, -                        DHT_MSG_MIGRATE_FILE_FAILED, -                        "Migrate file failed:" -                        "%s: failed to get xattr from %s (%s)", -                        loc->path, from->name, strerror (*fop_errno)); -        } -          /* create the destination, with required modes/xattr */          ret = __dht_rebalance_create_dst_file (this, to, from, loc, &stbuf, -                                               &dst_fd, xattr, fop_errno); +                                               &dst_fd, fop_errno);          if (ret) {                  gf_msg (this->name, GF_LOG_ERROR, 0, 0, "Create dst failed"                          " on - %s for file - %s", to->name, loc->path); @@ -1732,7 +1706,7 @@ dht_migrate_file (xlator_t *this, loc_t *loc, xlator_t *from, xlator_t *to,                   * as in case of failure the linkto needs to point to the source                   * subvol */                  ret = __dht_rebalance_create_dst_file (this, to, from, loc, &stbuf, -                                                       &dst_fd, xattr, fop_errno); +                                                       &dst_fd, fop_errno);                  if (ret) {                          gf_log (this->name, GF_LOG_ERROR, "Create dst failed"                                  " on - %s for file - %s", to->name, loc->path); @@ -1760,6 +1734,43 @@ dht_migrate_file (xlator_t *this, loc_t *loc, xlator_t *from, xlator_t *to,                          loc->path, from->name);                  goto out;          } + +        /* TODO: move all xattr related operations to fd based operations */ +        ret = syncop_listxattr (from, loc, &xattr, NULL, NULL); +        if (ret < 0) { +                *fop_errno = -ret; +                gf_msg (this->name, GF_LOG_WARNING, *fop_errno, +                        DHT_MSG_MIGRATE_FILE_FAILED, +                        "Migrate file failed:" +                        "%s: failed to get xattr from %s", +                        loc->path, from->name); +                ret = -1; +                goto out; +        } + +        /* Copying posix acls to the linkto file messes up the permissions*/ +        dht_strip_out_acls (xattr); + +        /* Remove the linkto xattr as we don't want to overwrite the value +         * set on the dst. +         */ +        dict_del (xattr, conf->link_xattr_name); + +        /* We need to error out if this fails as having the wrong shard xattrs +         * set on the dst could cause data corruption +         */ +        ret = syncop_fsetxattr (to, dst_fd, xattr, 0, NULL, NULL); +        if (ret < 0) { +                *fop_errno = -ret; +                gf_msg (this->name, GF_LOG_WARNING, -ret, +                        DHT_MSG_MIGRATE_FILE_FAILED, +                        "%s: failed to set xattr on %s", +                        loc->path, to->name); +                ret = -1; +                goto out; +        } + +          if (xattr_rsp) {                  /* we no more require this key */                  dict_del (dict, conf->link_xattr_name); @@ -2070,7 +2081,9 @@ dht_migrate_file (xlator_t *this, loc_t *loc, xlator_t *from, xlator_t *to,                  xattr = NULL;          } -        ret = syncop_listxattr (from, loc, &xattr, NULL, NULL); +        /* Set only the Posix ACLs this time */ +        ret = syncop_getxattr (from, loc, &xattr, POSIX_ACL_ACCESS_XATTR, +                               NULL, NULL);          if (ret < 0) {                  gf_msg (this->name, GF_LOG_WARNING, 0,                          DHT_MSG_MIGRATE_FILE_FAILED, diff --git a/xlators/storage/posix/src/posix-helpers.c b/xlators/storage/posix/src/posix-helpers.c index bdd6d5a98f8..23175f68968 100644 --- a/xlators/storage/posix/src/posix-helpers.c +++ b/xlators/storage/posix/src/posix-helpers.c @@ -163,6 +163,40 @@ _is_in_array (char **str_array, char *str)          return _gf_false;  } + +int32_t +posix_set_mode_in_dict (dict_t *in_dict, dict_t *out_dict, +                        struct iatt *in_stbuf) +{ +        int ret             = -1; +        mode_t mode         = 0; + +        if ((!in_dict) || (!in_stbuf) || (!out_dict)) { +                goto out; +        } + +        /* We need this only for files */ +        if (!(IA_ISREG (in_stbuf->ia_type))) { +                ret = 0; +                goto out; +        } + +        /* Nobody asked for this */ +        if (!dict_get (in_dict, DHT_MODE_IN_XDATA_KEY)) { +                ret = 0; +                goto out; +        } +        mode = st_mode_from_ia (in_stbuf->ia_prot, in_stbuf->ia_type); + +        ret = dict_set_int32 (out_dict, DHT_MODE_IN_XDATA_KEY, mode); + +out: +        return ret; +} + + + +  static gf_boolean_t  posix_xattr_ignorable (char *key)  { diff --git a/xlators/storage/posix/src/posix.c b/xlators/storage/posix/src/posix.c index e5ea5388fe5..15cb8b71879 100644 --- a/xlators/storage/posix/src/posix.c +++ b/xlators/storage/posix/src/posix.c @@ -5856,6 +5856,7 @@ do_xattrop (call_frame_t *frame, xlator_t *this, loc_t *loc, fd_t *fd,                  op_ret = -1;                  op_errno = ENOMEM;          } +       posix_set_mode_in_dict (xdata, xdata_rsp, &stbuf);  out:          STACK_UNWIND_STRICT (xattrop, frame, op_ret, op_errno, xattr_rsp, diff --git a/xlators/storage/posix/src/posix.h b/xlators/storage/posix/src/posix.h index 40ce4cdb5ac..f32a233e345 100644 --- a/xlators/storage/posix/src/posix.h +++ b/xlators/storage/posix/src/posix.h @@ -321,4 +321,7 @@ posix_get_objectsignature (char *, dict_t *);  int32_t  posix_fdget_objectsignature (int, dict_t *); +int32_t +posix_set_mode_in_dict (dict_t *in_dict, dict_t *out_dict, +                        struct iatt *in_stbuf);  #endif /* _POSIX_H */  | 
