diff options
| author | Amar Tumballi <amarts@redhat.com> | 2012-03-20 17:22:24 +0530 | 
|---|---|---|
| committer | Anand Avati <avati@redhat.com> | 2012-03-22 16:40:27 -0700 | 
| commit | 9d3af972f516b6ba38d2736ce2016e34a452d569 (patch) | |
| tree | 1dcdc620748a42cdfb5464c3adaae5a4a3a6f869 /xlators/cluster/afr/src | |
| parent | afe542eca18888463798747d2a95e5a9d239a4a0 (diff) | |
core: adding extra data for fops
with this change, the xlator APIs will have a dictionary as extra
argument, which is passed between all the layers. This can be
utilized for overloading in some of the operations.
Change-Id: I58a8186b3ef647650280e63f3e5e9b9de7827b40
Signed-off-by: Amar Tumballi <amarts@redhat.com>
BUG: 782265
Reviewed-on: http://review.gluster.com/2960
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Anand Avati <avati@redhat.com>
Diffstat (limited to 'xlators/cluster/afr/src')
20 files changed, 696 insertions, 589 deletions
diff --git a/xlators/cluster/afr/src/afr-common.c b/xlators/cluster/afr/src/afr-common.c index 22c74115149..2cfe92acfca 100644 --- a/xlators/cluster/afr/src/afr-common.c +++ b/xlators/cluster/afr/src/afr-common.c @@ -955,6 +955,12 @@ afr_local_cleanup (afr_local_t *local, xlator_t *this)                  if (local->cont.readdir.dict)                          dict_unref (local->cont.readdir.dict);          } + +        if (local->xdata_req) +                dict_unref (local->xdata_req); + +        if (local->xdata_rsp) +                dict_unref (local->xdata_rsp);  } @@ -2214,7 +2220,8 @@ afr_flush_unwind (call_frame_t *frame, xlator_t *this)          if (main_frame) {                  AFR_STACK_UNWIND (flush, main_frame, -                                  local->op_ret, local->op_errno); +                                  local->op_ret, local->op_errno, +                                  NULL);          }          return 0; @@ -2223,7 +2230,7 @@ afr_flush_unwind (call_frame_t *frame, xlator_t *this)  int  afr_flush_wind_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                    int32_t op_ret, int32_t op_errno) +                    int32_t op_ret, int32_t op_errno, dict_t *xdata)  {          afr_local_t *   local = NULL;          afr_private_t * priv  = NULL; @@ -2293,7 +2300,7 @@ afr_flush_wind (call_frame_t *frame, xlator_t *this)                                             (void *) (long) i,                                             priv->children[i],                                             priv->children[i]->fops->flush, -                                           local->fd); +                                           local->fd, NULL);                          if (!--call_count)                                  break; @@ -2320,7 +2327,7 @@ afr_flush_done (call_frame_t *frame, xlator_t *this)  int -afr_flush (call_frame_t *frame, xlator_t *this, fd_t *fd) +afr_flush (call_frame_t *frame, xlator_t *this, fd_t *fd, dict_t *xdata)  {          afr_private_t *priv  = NULL;          afr_local_t   *local = NULL; @@ -2373,7 +2380,7 @@ out:                  if (transaction_frame)                          AFR_STACK_DESTROY (transaction_frame); -                AFR_STACK_UNWIND (flush, frame, -1, op_errno); +                AFR_STACK_UNWIND (flush, frame, -1, op_errno, NULL);          }          return 0; @@ -2459,7 +2466,7 @@ afr_release (xlator_t *this, fd_t *fd)  int  afr_fsync_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                 int32_t op_ret, int32_t op_errno, struct iatt *prebuf, -               struct iatt *postbuf) +               struct iatt *postbuf, dict_t *xdata)  {          afr_local_t *local = NULL;          int call_count = -1; @@ -2501,7 +2508,8 @@ afr_fsync_cbk (call_frame_t *frame, void *cookie, xlator_t *this,          if (call_count == 0) {                  AFR_STACK_UNWIND (fsync, frame, local->op_ret, local->op_errno,                                    &local->cont.fsync.prebuf, -                                  &local->cont.fsync.postbuf); +                                  &local->cont.fsync.postbuf, +                                  NULL);          }          return 0; @@ -2510,7 +2518,7 @@ afr_fsync_cbk (call_frame_t *frame, void *cookie, xlator_t *this,  int  afr_fsync (call_frame_t *frame, xlator_t *this, fd_t *fd, -           int32_t datasync) +           int32_t datasync, dict_t *xdata)  {          afr_private_t *priv = NULL;          afr_local_t *local = NULL; @@ -2542,7 +2550,7 @@ afr_fsync (call_frame_t *frame, xlator_t *this, fd_t *fd,                                             (void *) (long) i,                                             priv->children[i],                                             priv->children[i]->fops->fsync, -                                           fd, datasync); +                                           fd, datasync, xdata);                          if (!--call_count)                                  break;                  } @@ -2551,7 +2559,7 @@ afr_fsync (call_frame_t *frame, xlator_t *this, fd_t *fd,          ret = 0;  out:          if (ret < 0) -                AFR_STACK_UNWIND (fsync, frame, -1, op_errno, NULL, NULL); +                AFR_STACK_UNWIND (fsync, frame, -1, op_errno, NULL, NULL, NULL);          return 0;  } @@ -2561,7 +2569,8 @@ out:  int32_t  afr_fsyncdir_cbk (call_frame_t *frame, void *cookie, -                  xlator_t *this, int32_t op_ret, int32_t op_errno) +                  xlator_t *this, int32_t op_ret, int32_t op_errno, +                  dict_t *xdata)  {          afr_local_t *local = NULL;          int call_count = -1; @@ -2581,7 +2590,7 @@ afr_fsyncdir_cbk (call_frame_t *frame, void *cookie,          if (call_count == 0)                  AFR_STACK_UNWIND (fsyncdir, frame, local->op_ret, -                                  local->op_errno); +                                  local->op_errno, xdata);          return 0;  } @@ -2589,7 +2598,7 @@ afr_fsyncdir_cbk (call_frame_t *frame, void *cookie,  int32_t  afr_fsyncdir (call_frame_t *frame, xlator_t *this, fd_t *fd, -              int32_t datasync) +              int32_t datasync, dict_t *xdata)  {          afr_private_t *priv = NULL;          afr_local_t *local = NULL; @@ -2618,7 +2627,7 @@ afr_fsyncdir (call_frame_t *frame, xlator_t *this, fd_t *fd,                          STACK_WIND (frame, afr_fsyncdir_cbk,                                      priv->children[i],                                      priv->children[i]->fops->fsyncdir, -                                    fd, datasync); +                                    fd, datasync, xdata);                          if (!--call_count)                                  break;                  } @@ -2627,7 +2636,7 @@ afr_fsyncdir (call_frame_t *frame, xlator_t *this, fd_t *fd,          ret = 0;  out:          if (ret < 0) -                AFR_STACK_UNWIND (fsyncdir, frame, -1, op_errno); +                AFR_STACK_UNWIND (fsyncdir, frame, -1, op_errno, NULL);          return 0;  } @@ -2638,7 +2647,7 @@ out:  int32_t  afr_xattrop_cbk (call_frame_t *frame, void *cookie,                   xlator_t *this, int32_t op_ret, int32_t op_errno, -                 dict_t *xattr) +                 dict_t *xattr, dict_t *xdata)  {          afr_local_t *local = NULL;          int call_count = -1; @@ -2661,7 +2670,7 @@ afr_xattrop_cbk (call_frame_t *frame, void *cookie,          if (call_count == 0)                  AFR_STACK_UNWIND (xattrop, frame, local->op_ret, local->op_errno, -                                  local->cont.xattrop.xattr); +                local->cont.xattrop.xattr, xdata);          return 0;  } @@ -2669,7 +2678,7 @@ afr_xattrop_cbk (call_frame_t *frame, void *cookie,  int32_t  afr_xattrop (call_frame_t *frame, xlator_t *this, loc_t *loc, -             gf_xattrop_flags_t optype, dict_t *xattr) +             gf_xattrop_flags_t optype, dict_t *xattr, dict_t *xdata)  {          afr_private_t *priv = NULL;          afr_local_t *local  = NULL; @@ -2698,7 +2707,7 @@ afr_xattrop (call_frame_t *frame, xlator_t *this, loc_t *loc,                          STACK_WIND (frame, afr_xattrop_cbk,                                      priv->children[i],                                      priv->children[i]->fops->xattrop, -                                    loc, optype, xattr); +                                    loc, optype, xattr, xdata);                          if (!--call_count)                                  break;                  } @@ -2707,7 +2716,7 @@ afr_xattrop (call_frame_t *frame, xlator_t *this, loc_t *loc,          ret = 0;  out:          if (ret < 0) -                AFR_STACK_UNWIND (xattrop, frame, -1, op_errno, NULL); +                AFR_STACK_UNWIND (xattrop, frame, -1, op_errno, NULL, NULL);          return 0;  } @@ -2718,7 +2727,7 @@ out:  int32_t  afr_fxattrop_cbk (call_frame_t *frame, void *cookie,                    xlator_t *this, int32_t op_ret, int32_t op_errno, -                  dict_t *xattr) +                  dict_t *xattr, dict_t *xdata)  {          afr_local_t *local = NULL; @@ -2743,7 +2752,7 @@ afr_fxattrop_cbk (call_frame_t *frame, void *cookie,          if (call_count == 0)                  AFR_STACK_UNWIND (fxattrop, frame, local->op_ret, local->op_errno, -                                  local->cont.fxattrop.xattr); +                                  local->cont.fxattrop.xattr, xdata);          return 0;  } @@ -2751,7 +2760,7 @@ afr_fxattrop_cbk (call_frame_t *frame, void *cookie,  int32_t  afr_fxattrop (call_frame_t *frame, xlator_t *this, fd_t *fd, -              gf_xattrop_flags_t optype, dict_t *xattr) +              gf_xattrop_flags_t optype, dict_t *xattr, dict_t *xdata)  {          afr_private_t *priv = NULL;          afr_local_t *local  = NULL; @@ -2780,7 +2789,7 @@ afr_fxattrop (call_frame_t *frame, xlator_t *this, fd_t *fd,                          STACK_WIND (frame, afr_fxattrop_cbk,                                      priv->children[i],                                      priv->children[i]->fops->fxattrop, -                                    fd, optype, xattr); +                                    fd, optype, xattr, xdata);                          if (!--call_count)                                  break;                  } @@ -2789,7 +2798,7 @@ afr_fxattrop (call_frame_t *frame, xlator_t *this, fd_t *fd,          ret = 0;  out:          if (ret < 0) -                AFR_STACK_UNWIND (fxattrop, frame, -1, op_errno, NULL); +                AFR_STACK_UNWIND (fxattrop, frame, -1, op_errno, NULL, NULL);          return 0;  } @@ -2798,7 +2807,7 @@ out:  int32_t  afr_inodelk_cbk (call_frame_t *frame, void *cookie, -                 xlator_t *this, int32_t op_ret, int32_t op_errno) +                 xlator_t *this, int32_t op_ret, int32_t op_errno, dict_t *xdata)  {          afr_local_t *local = NULL; @@ -2819,7 +2828,7 @@ afr_inodelk_cbk (call_frame_t *frame, void *cookie,          if (call_count == 0)                  AFR_STACK_UNWIND (inodelk, frame, local->op_ret, -                                  local->op_errno); +                                  local->op_errno, xdata);          return 0;  } @@ -2827,7 +2836,8 @@ afr_inodelk_cbk (call_frame_t *frame, void *cookie,  int32_t  afr_inodelk (call_frame_t *frame, xlator_t *this, -             const char *volume, loc_t *loc, int32_t cmd, struct gf_flock *flock) +             const char *volume, loc_t *loc, int32_t cmd, +             struct gf_flock *flock, dict_t *xdata)  {          afr_private_t *priv = NULL;          afr_local_t *local  = NULL; @@ -2856,7 +2866,7 @@ afr_inodelk (call_frame_t *frame, xlator_t *this,                          STACK_WIND (frame, afr_inodelk_cbk,                                      priv->children[i],                                      priv->children[i]->fops->inodelk, -                                    volume, loc, cmd, flock); +                                    volume, loc, cmd, flock, xdata);                          if (!--call_count)                                  break; @@ -2866,14 +2876,15 @@ afr_inodelk (call_frame_t *frame, xlator_t *this,          ret = 0;  out:          if (ret < 0) -                AFR_STACK_UNWIND (inodelk, frame, -1, op_errno); +                AFR_STACK_UNWIND (inodelk, frame, -1, op_errno, NULL);          return 0;  }  int32_t  afr_finodelk_cbk (call_frame_t *frame, void *cookie, -                  xlator_t *this, int32_t op_ret, int32_t op_errno) +                  xlator_t *this, int32_t op_ret, int32_t op_errno, +                  dict_t *xdata)  {          afr_local_t *local = NULL; @@ -2894,7 +2905,7 @@ afr_finodelk_cbk (call_frame_t *frame, void *cookie,          if (call_count == 0)                  AFR_STACK_UNWIND (finodelk, frame, local->op_ret, -                                  local->op_errno); +                                  local->op_errno, xdata);          return 0;  } @@ -2902,7 +2913,8 @@ afr_finodelk_cbk (call_frame_t *frame, void *cookie,  int32_t  afr_finodelk (call_frame_t *frame, xlator_t *this, -              const char *volume, fd_t *fd, int32_t cmd, struct gf_flock *flock) +              const char *volume, fd_t *fd, int32_t cmd, struct gf_flock *flock, +              dict_t *xdata)  {          afr_private_t *priv = NULL;          afr_local_t *local  = NULL; @@ -2931,7 +2943,7 @@ afr_finodelk (call_frame_t *frame, xlator_t *this,                          STACK_WIND (frame, afr_finodelk_cbk,                                      priv->children[i],                                      priv->children[i]->fops->finodelk, -                                    volume, fd, cmd, flock); +                                    volume, fd, cmd, flock, xdata);                          if (!--call_count)                                  break; @@ -2941,15 +2953,14 @@ afr_finodelk (call_frame_t *frame, xlator_t *this,          ret = 0;  out:          if (ret < 0) -                AFR_STACK_UNWIND (finodelk, frame, -1, op_errno); +                AFR_STACK_UNWIND (finodelk, frame, -1, op_errno, NULL);          return 0;  }  int32_t -afr_entrylk_cbk (call_frame_t *frame, void *cookie, -                 xlator_t *this, int32_t op_ret, int32_t op_errno) - +afr_entrylk_cbk (call_frame_t *frame, void *cookie, xlator_t *this, +                 int32_t op_ret, int32_t op_errno, dict_t *xdata)  {          afr_local_t *local = NULL;          int call_count = -1; @@ -2969,7 +2980,7 @@ afr_entrylk_cbk (call_frame_t *frame, void *cookie,          if (call_count == 0)                  AFR_STACK_UNWIND (entrylk, frame, local->op_ret, -                                  local->op_errno); +                                  local->op_errno, xdata);          return 0;  } @@ -2978,7 +2989,8 @@ afr_entrylk_cbk (call_frame_t *frame, void *cookie,  int32_t  afr_entrylk (call_frame_t *frame, xlator_t *this,               const char *volume, loc_t *loc, -             const char *basename, entrylk_cmd cmd, entrylk_type type) +             const char *basename, entrylk_cmd cmd, entrylk_type type, +             dict_t *xdata)  {          afr_private_t *priv = NULL;          afr_local_t *local  = NULL; @@ -3007,7 +3019,7 @@ afr_entrylk (call_frame_t *frame, xlator_t *this,                          STACK_WIND (frame, afr_entrylk_cbk,                                      priv->children[i],                                      priv->children[i]->fops->entrylk, -                                    volume, loc, basename, cmd, type); +                                    volume, loc, basename, cmd, type, xdata);                          if (!--call_count)                                  break; @@ -3017,7 +3029,7 @@ afr_entrylk (call_frame_t *frame, xlator_t *this,          ret = 0;  out:          if (ret < 0) -                AFR_STACK_UNWIND (entrylk, frame, -1, op_errno); +                AFR_STACK_UNWIND (entrylk, frame, -1, op_errno, NULL);          return 0;  } @@ -3025,7 +3037,7 @@ out:  int32_t  afr_fentrylk_cbk (call_frame_t *frame, void *cookie, -                  xlator_t *this, int32_t op_ret, int32_t op_errno) +                  xlator_t *this, int32_t op_ret, int32_t op_errno, dict_t *xdata)  {          afr_local_t *local = NULL; @@ -3046,7 +3058,7 @@ afr_fentrylk_cbk (call_frame_t *frame, void *cookie,          if (call_count == 0)                  AFR_STACK_UNWIND (fentrylk, frame, local->op_ret, -                                  local->op_errno); +                                  local->op_errno, xdata);          return 0;  } @@ -3055,7 +3067,8 @@ afr_fentrylk_cbk (call_frame_t *frame, void *cookie,  int32_t  afr_fentrylk (call_frame_t *frame, xlator_t *this,                const char *volume, fd_t *fd, -              const char *basename, entrylk_cmd cmd, entrylk_type type) +              const char *basename, entrylk_cmd cmd, +              entrylk_type type, dict_t *xdata)  {          afr_private_t *priv = NULL;          afr_local_t *local  = NULL; @@ -3084,7 +3097,7 @@ afr_fentrylk (call_frame_t *frame, xlator_t *this,                          STACK_WIND (frame, afr_fentrylk_cbk,                                      priv->children[i],                                      priv->children[i]->fops->fentrylk, -                                    volume, fd, basename, cmd, type); +                                    volume, fd, basename, cmd, type, xdata);                          if (!--call_count)                                  break; @@ -3094,14 +3107,14 @@ afr_fentrylk (call_frame_t *frame, xlator_t *this,          ret = 0;  out:          if (ret < 0) -                AFR_STACK_UNWIND (fentrylk, frame, -1, op_errno); +                AFR_STACK_UNWIND (fentrylk, frame, -1, op_errno, NULL);          return 0;  }  int32_t  afr_statfs_cbk (call_frame_t *frame, void *cookie,                  xlator_t *this, int32_t op_ret, int32_t op_errno, -                struct statvfs *statvfs) +                struct statvfs *statvfs, dict_t *xdata)  {          afr_local_t *local = NULL;          int call_count = 0; @@ -3132,7 +3145,7 @@ afr_statfs_cbk (call_frame_t *frame, void *cookie,          if (call_count == 0)                  AFR_STACK_UNWIND (statfs, frame, local->op_ret, local->op_errno, -                                  &local->cont.statfs.buf); +                                  &local->cont.statfs.buf, xdata);          return 0;  } @@ -3140,7 +3153,7 @@ afr_statfs_cbk (call_frame_t *frame, void *cookie,  int32_t  afr_statfs (call_frame_t *frame, xlator_t *this, -            loc_t *loc) +            loc_t *loc, dict_t *xdata)  {          afr_private_t *  priv        = NULL;          int              child_count = 0; @@ -3171,7 +3184,7 @@ afr_statfs (call_frame_t *frame, xlator_t *this,                          STACK_WIND (frame, afr_statfs_cbk,                                      priv->children[i],                                      priv->children[i]->fops->statfs, -                                    loc); +                                    loc, xdata);                          if (!--call_count)                                  break;                  } @@ -3180,14 +3193,15 @@ afr_statfs (call_frame_t *frame, xlator_t *this,          ret = 0;  out:          if (ret < 0) -                AFR_STACK_UNWIND (statfs, frame, -1, op_errno, NULL); +                AFR_STACK_UNWIND (statfs, frame, -1, op_errno, NULL, NULL);          return 0;  }  int32_t  afr_lk_unlock_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                   int32_t op_ret, int32_t op_errno, struct gf_flock *lock) +                   int32_t op_ret, int32_t op_errno, struct gf_flock *lock, +                   dict_t *xdata)  {          afr_local_t * local = NULL;          int call_count = -1; @@ -3197,7 +3211,7 @@ afr_lk_unlock_cbk (call_frame_t *frame, void *cookie, xlator_t *this,          if (call_count == 0)                  AFR_STACK_UNWIND (lk, frame, local->op_ret, local->op_errno, -                                  lock); +                                  lock, xdata);          return 0;  } @@ -3219,7 +3233,7 @@ afr_lk_unlock (call_frame_t *frame, xlator_t *this)          if (call_count == 0) {                  AFR_STACK_UNWIND (lk, frame, local->op_ret, local->op_errno, -                                  &local->cont.lk.ret_flock); +                                  &local->cont.lk.ret_flock, NULL);                  return 0;          } @@ -3233,7 +3247,7 @@ afr_lk_unlock (call_frame_t *frame, xlator_t *this)                                      priv->children[i],                                      priv->children[i]->fops->lk,                                      local->fd, F_SETLK, -                                    &local->cont.lk.user_flock); +                                    &local->cont.lk.user_flock, NULL);                          if (!--call_count)                                  break; @@ -3246,7 +3260,7 @@ afr_lk_unlock (call_frame_t *frame, xlator_t *this)  int32_t  afr_lk_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -            int32_t op_ret, int32_t op_errno, struct gf_flock *lock) +            int32_t op_ret, int32_t op_errno, struct gf_flock *lock, dict_t *xdata)  {          afr_local_t *local = NULL;          afr_private_t *priv = NULL; @@ -3281,12 +3295,12 @@ afr_lk_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                                     priv->children[child_index],                                     priv->children[child_index]->fops->lk,                                     local->fd, local->cont.lk.cmd, -                                   &local->cont.lk.user_flock); +                                   &local->cont.lk.user_flock, xdata);          } else if (local->op_ret == -1) {                  /* all nodes have gone down */                  AFR_STACK_UNWIND (lk, frame, -1, ENOTCONN, -                                  &local->cont.lk.ret_flock); +                                  &local->cont.lk.ret_flock, NULL);          } else {                  /* locking has succeeded on all nodes that are up */ @@ -3304,7 +3318,7 @@ afr_lk_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                  */                  AFR_STACK_UNWIND (lk, frame, local->op_ret, local->op_errno, -                                  &local->cont.lk.ret_flock); +                                  &local->cont.lk.ret_flock, NULL);          }          return 0; @@ -3313,7 +3327,7 @@ afr_lk_cbk (call_frame_t *frame, void *cookie, xlator_t *this,  int  afr_lk (call_frame_t *frame, xlator_t *this, -        fd_t *fd, int32_t cmd, struct gf_flock *flock) +        fd_t *fd, int32_t cmd, struct gf_flock *flock, dict_t *xdata)  {          afr_private_t *priv = NULL;          afr_local_t *local = NULL; @@ -3351,12 +3365,12 @@ afr_lk (call_frame_t *frame, xlator_t *this,          STACK_WIND_COOKIE (frame, afr_lk_cbk, (void *) (long) 0,                             priv->children[i],                             priv->children[i]->fops->lk, -                           fd, cmd, flock); +                           fd, cmd, flock, xdata);          ret = 0;  out:          if (ret < 0) -                AFR_STACK_UNWIND (lk, frame, -1, op_errno, NULL); +                AFR_STACK_UNWIND (lk, frame, -1, op_errno, NULL, NULL);          return 0;  } @@ -3911,7 +3925,7 @@ afr_set_low_priority (call_frame_t *frame)  int  afr_child_fd_ctx_set (xlator_t *this, fd_t *fd, int32_t child, -                      int flags, int32_t wbflags) +                      int flags)  {          int             ret = 0;          uint64_t        ctx = 0; @@ -3936,7 +3950,6 @@ afr_child_fd_ctx_set (xlator_t *this, fd_t *fd, int32_t child,          fd_ctx->opened_on[child] = AFR_FD_OPENED;          if (!IA_ISDIR (fd->inode->ia_type)) {                  fd_ctx->flags            = flags; -                fd_ctx->wbflags          = wbflags;          }          ret = 0;  out: diff --git a/xlators/cluster/afr/src/afr-dir-read.c b/xlators/cluster/afr/src/afr-dir-read.c index ee9c5d8cc7f..5abbd9c138a 100644 --- a/xlators/cluster/afr/src/afr-dir-read.c +++ b/xlators/cluster/afr/src/afr-dir-read.c @@ -60,7 +60,7 @@ afr_examine_dir_sh_unwind (call_frame_t *frame, xlator_t *this, int32_t op_ret,          afr_set_opendir_done (this, local->fd->inode);          AFR_STACK_UNWIND (opendir, frame, local->op_ret, -                          local->op_errno, local->fd); +                          local->op_errno, local->fd, NULL);          return 0;  } @@ -99,7 +99,7 @@ __checksums_differ (uint32_t *checksum, int child_count,  int32_t  afr_examine_dir_readdir_cbk (call_frame_t *frame, void *cookie,                               xlator_t *this, int32_t op_ret, int32_t op_errno, -                             gf_dirent_t *entries) +                             gf_dirent_t *entries, dict_t *xdata)  {          afr_private_t *   priv        = NULL;          afr_local_t *     local       = NULL; @@ -152,7 +152,7 @@ afr_examine_dir_readdir_cbk (call_frame_t *frame, void *cookie,                             (void *) (long) child_index,                             priv->children[child_index],                             priv->children[child_index]->fops->readdir, -                           local->fd, 131072, last_offset); +                           local->fd, 131072, last_offset, NULL);          return 0; @@ -175,7 +175,7 @@ out:                          afr_set_opendir_done (this, inode);                          AFR_STACK_UNWIND (opendir, frame, local->op_ret, -                                          local->op_errno, local->fd); +                                          local->op_errno, local->fd, NULL);                  }          } @@ -208,7 +208,7 @@ afr_examine_dir (call_frame_t *frame, xlator_t *this)                                             (void *) (long) i,                                             priv->children[i],                                             priv->children[i]->fops->readdir, -                                           local->fd, 131072, 0); +                                           local->fd, 131072, 0, NULL);                          if (!--call_count)                                  break; @@ -222,7 +222,7 @@ afr_examine_dir (call_frame_t *frame, xlator_t *this)  int32_t  afr_opendir_cbk (call_frame_t *frame, void *cookie,                   xlator_t *this, int32_t op_ret, int32_t op_errno, -                 fd_t *fd) +                 fd_t *fd, dict_t *xdata)  {          afr_private_t *priv              = NULL;          afr_local_t   *local             = NULL; @@ -242,8 +242,7 @@ afr_opendir_cbk (call_frame_t *frame, void *cookie,          {                  if (op_ret >= 0) {                          local->op_ret = op_ret; -                        ret = afr_child_fd_ctx_set (this, fd, child_index, -                                                    0, 0); +                        ret = afr_child_fd_ctx_set (this, fd, child_index, 0);                          if (ret) {                                  local->op_ret = -1;                                  local->op_errno = -ret; @@ -291,7 +290,7 @@ unlock:  out:          AFR_STACK_UNWIND (opendir, frame, local->op_ret, -                          local->op_errno, local->fd); +                          local->op_errno, local->fd, NULL);          return 0;  } @@ -336,7 +335,7 @@ afr_opendir (call_frame_t *frame, xlator_t *this,                                             (void*) (long) i,                                             priv->children[i],                                             priv->children[i]->fops->opendir, -                                           loc, fd); +                                           loc, fd, NULL);                          if (!--call_count)                                  break; @@ -346,7 +345,7 @@ afr_opendir (call_frame_t *frame, xlator_t *this,          ret = 0;  out:          if (ret < 0) -                AFR_STACK_UNWIND (opendir, frame, -1, op_errno, fd); +                AFR_STACK_UNWIND (opendir, frame, -1, op_errno, fd, NULL);          return 0;  } @@ -476,7 +475,7 @@ afr_forget_entries (fd_t *fd)  int32_t  afr_readdir_cbk (call_frame_t *frame, void *cookie,                   xlator_t *this, int32_t op_ret, int32_t op_errno, -                 gf_dirent_t *entries) +                 gf_dirent_t *entries, dict_t *xdata)  {          afr_local_t *   local       = NULL;          gf_dirent_t *   entry       = NULL; @@ -496,7 +495,7 @@ afr_readdir_cbk (call_frame_t *frame, void *cookie,          }  out: -        AFR_STACK_UNWIND (readdir, frame, op_ret, op_errno, entries); +        AFR_STACK_UNWIND (readdir, frame, op_ret, op_errno, entries, NULL);          return 0;  } @@ -504,7 +503,8 @@ out:  int32_t  afr_readdirp_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                  int32_t op_ret, int32_t op_errno, gf_dirent_t *entries) +                  int32_t op_ret, int32_t op_errno, gf_dirent_t *entries, +                  dict_t *xdata)  {          afr_private_t *  priv            = NULL;          afr_local_t *    local           = NULL; @@ -623,7 +623,7 @@ afr_readdirp_cbk (call_frame_t *frame, void *cookie, xlator_t *this,          }  out: -        AFR_STACK_UNWIND (readdirp, frame, op_ret, op_errno, entries); +        AFR_STACK_UNWIND (readdirp, frame, op_ret, op_errno, entries, NULL);          return 0;  } @@ -706,7 +706,7 @@ afr_do_readdir (call_frame_t *frame, xlator_t *this,                                     (void *) (long) call_child,                                     children[call_child],                                     children[call_child]->fops->readdir, fd, -                                   size, offset); +                                   size, offset, dict);          else                  STACK_WIND_COOKIE (frame, afr_readdirp_cbk,                                     (void *) (long) call_child, @@ -717,16 +717,16 @@ afr_do_readdir (call_frame_t *frame, xlator_t *this,          ret = 0;  out:          if (ret < 0) -                AFR_STACK_UNWIND (readdir, frame, -1, op_errno, NULL); +                AFR_STACK_UNWIND (readdir, frame, -1, op_errno, NULL, NULL);          return 0;  }  int32_t  afr_readdir (call_frame_t *frame, xlator_t *this, fd_t *fd, size_t size, -             off_t offset) +             off_t offset, dict_t *xdata)  { -        afr_do_readdir (frame, this, fd, size, offset, GF_FOP_READDIR, NULL); +        afr_do_readdir (frame, this, fd, size, offset, GF_FOP_READDIR, xdata);          return 0;  } diff --git a/xlators/cluster/afr/src/afr-dir-read.h b/xlators/cluster/afr/src/afr-dir-read.h index 7e50a1c8cc8..2ab126adf37 100644 --- a/xlators/cluster/afr/src/afr-dir-read.h +++ b/xlators/cluster/afr/src/afr-dir-read.h @@ -23,14 +23,14 @@  int32_t  afr_opendir (call_frame_t *frame, xlator_t *this, -	     loc_t *loc, fd_t *fd); +	     loc_t *loc, fd_t *fd, dict_t *xdata);  int32_t  afr_releasedir (xlator_t *this, fd_t *fd);  int32_t  afr_readdir (call_frame_t *frame, xlator_t *this, -	     fd_t *fd, size_t size, off_t offset); +	     fd_t *fd, size_t size, off_t offset, dict_t *xdata);  int32_t @@ -39,7 +39,7 @@ afr_readdirp (call_frame_t *frame, xlator_t *this,  int32_t  afr_checksum (call_frame_t *frame, xlator_t *this, -	      loc_t *loc, int32_t flags); +	      loc_t *loc, int32_t flags, dict_t *xdata);  #endif /* __DIR_READ_H__ */ diff --git a/xlators/cluster/afr/src/afr-dir-write.c b/xlators/cluster/afr/src/afr-dir-write.c index 1cd447e750f..37d86ee5c31 100644 --- a/xlators/cluster/afr/src/afr-dir-write.c +++ b/xlators/cluster/afr/src/afr-dir-write.c @@ -106,7 +106,8 @@ afr_create_unwind (call_frame_t *frame, xlator_t *this)                                    local->cont.create.fd,                                    local->cont.create.inode,                                    unwind_buf, &local->cont.create.preparent, -                                  &local->cont.create.postparent); +                                  &local->cont.create.postparent, +                                  NULL);          }          return 0; @@ -117,7 +118,8 @@ int  afr_create_wind_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                       int32_t op_ret, int32_t op_errno,                       fd_t *fd, inode_t *inode, struct iatt *buf, -                     struct iatt *preparent, struct iatt *postparent) +                     struct iatt *preparent, struct iatt *postparent, +                     dict_t *xdata)  {          afr_local_t     *local = NULL;          afr_private_t   *priv  = NULL; @@ -235,8 +237,9 @@ afr_create_wind (call_frame_t *frame, xlator_t *this)                                             &local->loc,                                             local->cont.create.flags,                                             local->cont.create.mode, +                                           local->umask,                                             local->cont.create.fd, -                                           local->cont.create.params); +                                           local->xdata_req);                          if (!--call_count)                                  break;                  } @@ -264,7 +267,7 @@ afr_create_done (call_frame_t *frame, xlator_t *this)  int  afr_create (call_frame_t *frame, xlator_t *this,              loc_t *loc, int32_t flags, mode_t mode, -            fd_t *fd, dict_t *params) +            mode_t umask, fd_t *fd, dict_t *params)  {          afr_private_t  *priv  = NULL;          afr_local_t    *local = NULL; @@ -305,8 +308,9 @@ afr_create (call_frame_t *frame, xlator_t *this,          local->cont.create.flags = flags;          local->cont.create.mode  = mode;          local->cont.create.fd    = fd_ref (fd); +        local->umask  = umask;          if (params) -                local->cont.create.params = dict_ref (params); +                local->xdata_req = dict_ref (params);          local->transaction.fop    = afr_create_wind;          local->transaction.done   = afr_create_done; @@ -328,7 +332,7 @@ out:                  if (transaction_frame)                          AFR_STACK_DESTROY (transaction_frame);                  AFR_STACK_UNWIND (create, frame, -1, op_errno, -                                  NULL, NULL, NULL, NULL, NULL); +                                  NULL, NULL, NULL, NULL, NULL, NULL);          }          return 0; @@ -367,7 +371,8 @@ afr_mknod_unwind (call_frame_t *frame, xlator_t *this)                                    local->op_ret, local->op_errno,                                    local->cont.mknod.inode,                                    unwind_buf, &local->cont.mknod.preparent, -                                  &local->cont.mknod.postparent); +                                  &local->cont.mknod.postparent, +                                  NULL);          }          return 0; @@ -378,7 +383,7 @@ int  afr_mknod_wind_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                      int32_t op_ret, int32_t op_errno, inode_t *inode,                      struct iatt *buf, struct iatt *preparent, -                    struct iatt *postparent) +                    struct iatt *postparent, dict_t *xdata)  {          afr_local_t     *local          = NULL;          afr_private_t   *priv           = NULL; @@ -463,7 +468,8 @@ afr_mknod_wind (call_frame_t *frame, xlator_t *this)                                             priv->children[i]->fops->mknod,                                             &local->loc, local->cont.mknod.mode,                                             local->cont.mknod.dev, -                                           local->cont.mknod.params); +                                           local->umask, +                                           local->xdata_req);                          if (!--call_count)                                  break;                  } @@ -488,8 +494,8 @@ afr_mknod_done (call_frame_t *frame, xlator_t *this)  int -afr_mknod (call_frame_t *frame, xlator_t *this, -           loc_t *loc, mode_t mode, dev_t dev, dict_t *params) +afr_mknod (call_frame_t *frame, xlator_t *this, loc_t *loc, mode_t mode, +           dev_t dev, mode_t umask, dict_t *params)  {          afr_private_t * priv  = NULL;          afr_local_t   * local = NULL; @@ -529,8 +535,9 @@ afr_mknod (call_frame_t *frame, xlator_t *this,          local->cont.mknod.mode  = mode;          local->cont.mknod.dev   = dev; +        local->umask = umask;          if (params) -                local->cont.mknod.params = dict_ref (params); +                local->xdata_req = dict_ref (params);          local->transaction.fop    = afr_mknod_wind;          local->transaction.done   = afr_mknod_done; @@ -552,7 +559,7 @@ out:                  if (transaction_frame)                          AFR_STACK_DESTROY (transaction_frame);                  AFR_STACK_UNWIND (mknod, frame, -1, op_errno, -                                  NULL, NULL, NULL, NULL); +                                  NULL, NULL, NULL, NULL, NULL);          }          return 0; @@ -592,7 +599,8 @@ afr_mkdir_unwind (call_frame_t *frame, xlator_t *this)                                    local->op_ret, local->op_errno,                                    local->cont.mkdir.inode,                                    unwind_buf, &local->cont.mkdir.preparent, -                                  &local->cont.mkdir.postparent); +                                  &local->cont.mkdir.postparent, +                                  NULL);          }          return 0; @@ -603,7 +611,7 @@ int  afr_mkdir_wind_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                      int32_t op_ret, int32_t op_errno, inode_t *inode,                      struct iatt *buf, struct iatt *preparent, -                    struct iatt *postparent) +                    struct iatt *postparent, dict_t *xdata)  {          afr_local_t     *local          = NULL;          afr_private_t   *priv           = NULL; @@ -688,7 +696,8 @@ afr_mkdir_wind (call_frame_t *frame, xlator_t *this)                                             priv->children[i],                                             priv->children[i]->fops->mkdir,                                             &local->loc, local->cont.mkdir.mode, -                                           local->cont.mkdir.params); +                                           local->umask, +                                           local->xdata_req);                          if (!--call_count)                                  break;                  } @@ -715,7 +724,7 @@ afr_mkdir_done (call_frame_t *frame, xlator_t *this)  int  afr_mkdir (call_frame_t *frame, xlator_t *this, -           loc_t *loc, mode_t mode, dict_t *params) +           loc_t *loc, mode_t mode, mode_t umask, dict_t *params)  {          afr_private_t * priv  = NULL;          afr_local_t   * local = NULL; @@ -754,8 +763,9 @@ afr_mkdir (call_frame_t *frame, xlator_t *this,          UNLOCK (&priv->read_child_lock);          local->cont.mkdir.mode  = mode; +        local->umask = umask;          if (params) -                local->cont.mkdir.params = dict_ref (params); +                local->xdata_req = dict_ref (params);          local->transaction.fop    = afr_mkdir_wind;          local->transaction.done   = afr_mkdir_done; @@ -778,7 +788,7 @@ out:                          AFR_STACK_DESTROY (transaction_frame);                  AFR_STACK_UNWIND (mkdir, frame, -1, op_errno, -                                  NULL, NULL, NULL, NULL); +                                  NULL, NULL, NULL, NULL, NULL);          }          return 0; @@ -818,7 +828,8 @@ afr_link_unwind (call_frame_t *frame, xlator_t *this)                                    local->op_ret, local->op_errno,                                    local->cont.link.inode,                                    unwind_buf, &local->cont.link.preparent, -                                  &local->cont.link.postparent); +                                  &local->cont.link.postparent, +                                  NULL);          }          return 0; @@ -829,7 +840,7 @@ int  afr_link_wind_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                     int32_t op_ret, int32_t op_errno, inode_t *inode,                     struct iatt *buf, struct iatt *preparent, -                   struct iatt *postparent) +                   struct iatt *postparent, dict_t *xdata)  {          afr_local_t     *local          = NULL;          afr_private_t   *priv           = NULL; @@ -914,7 +925,7 @@ afr_link_wind (call_frame_t *frame, xlator_t *this)                                             priv->children[i],                                             priv->children[i]->fops->link,                                             &local->loc, -                                           &local->newloc); +                                           &local->newloc, local->xdata_req);                          if (!--call_count)                                  break; @@ -940,7 +951,7 @@ afr_link_done (call_frame_t *frame, xlator_t *this)  int  afr_link (call_frame_t *frame, xlator_t *this, -          loc_t *oldloc, loc_t *newloc) +          loc_t *oldloc, loc_t *newloc, dict_t *xdata)  {          afr_private_t * priv  = NULL;          afr_local_t   * local = NULL; @@ -971,6 +982,8 @@ afr_link (call_frame_t *frame, xlator_t *this,          loc_copy (&local->loc,    oldloc);          loc_copy (&local->newloc, newloc); +        if (xdata) +                local->xdata_req = dict_ref (xdata);          LOCK (&priv->read_child_lock);          { @@ -999,7 +1012,7 @@ out:                  if (transaction_frame)                          AFR_STACK_DESTROY (transaction_frame);                  AFR_STACK_UNWIND (link, frame, -1, op_errno, -                                  NULL, NULL, NULL, NULL); +                                  NULL, NULL, NULL, NULL, NULL);          }          return 0; @@ -1039,7 +1052,8 @@ afr_symlink_unwind (call_frame_t *frame, xlator_t *this)                                    local->op_ret, local->op_errno,                                    local->cont.symlink.inode,                                    unwind_buf, &local->cont.symlink.preparent, -                                  &local->cont.symlink.postparent); +                                  &local->cont.symlink.postparent, +                                  NULL);          }          return 0; @@ -1050,7 +1064,7 @@ int  afr_symlink_wind_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                        int32_t op_ret, int32_t op_errno, inode_t *inode,                        struct iatt *buf, struct iatt *preparent, -                      struct iatt *postparent) +                      struct iatt *postparent, dict_t *xdata)  {          afr_local_t     *local          = NULL;          afr_private_t   *priv           = NULL; @@ -1136,7 +1150,8 @@ afr_symlink_wind (call_frame_t *frame, xlator_t *this)                                             priv->children[i]->fops->symlink,                                             local->cont.symlink.linkpath,                                             &local->loc, -                                           local->cont.symlink.params); +                                           local->umask, +                                           local->xdata_req);                          if (!--call_count)                                  break; @@ -1163,7 +1178,7 @@ afr_symlink_done (call_frame_t *frame, xlator_t *this)  int  afr_symlink (call_frame_t *frame, xlator_t *this, -             const char *linkpath, loc_t *loc, dict_t *params) +             const char *linkpath, loc_t *loc, mode_t umask, dict_t *params)  {          afr_private_t * priv  = NULL;          afr_local_t   * local = NULL; @@ -1202,8 +1217,9 @@ afr_symlink (call_frame_t *frame, xlator_t *this,          UNLOCK (&priv->read_child_lock);          local->cont.symlink.linkpath = gf_strdup (linkpath); +        local->umask = umask;          if (params) -                local->cont.symlink.params = dict_ref (params); +                local->xdata_req = dict_ref (params);          local->transaction.fop    = afr_symlink_wind;          local->transaction.done   = afr_symlink_done; @@ -1225,7 +1241,7 @@ out:                  if (transaction_frame)                          AFR_STACK_DESTROY (transaction_frame);                  AFR_STACK_UNWIND (symlink, frame, -1, op_errno, -                                  NULL, NULL, NULL, NULL); +                                  NULL, NULL, NULL, NULL, NULL);          }          return 0; @@ -1266,7 +1282,8 @@ afr_rename_unwind (call_frame_t *frame, xlator_t *this)                                    &local->cont.rename.preoldparent,                                    &local->cont.rename.postoldparent,                                    &local->cont.rename.prenewparent, -                                  &local->cont.rename.postnewparent); +                                  &local->cont.rename.postnewparent, +                                  NULL);          }          return 0; @@ -1277,7 +1294,8 @@ int  afr_rename_wind_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                       int32_t op_ret, int32_t op_errno, struct iatt *buf,                       struct iatt *preoldparent, struct iatt *postoldparent, -                     struct iatt *prenewparent, struct iatt *postnewparent) +                     struct iatt *prenewparent, struct iatt *postnewparent, +                     dict_t *xdata)  {          afr_local_t *   local = NULL;          int call_count = -1; @@ -1356,7 +1374,7 @@ afr_rename_wind (call_frame_t *frame, xlator_t *this)                                             priv->children[i],                                             priv->children[i]->fops->rename,                                             &local->loc, -                                           &local->newloc); +                                           &local->newloc, NULL);                          if (!--call_count)                                  break;                  } @@ -1381,7 +1399,7 @@ afr_rename_done (call_frame_t *frame, xlator_t *this)  int  afr_rename (call_frame_t *frame, xlator_t *this, -            loc_t *oldloc, loc_t *newloc) +            loc_t *oldloc, loc_t *newloc, dict_t *xdata)  {          afr_private_t * priv  = NULL;          afr_local_t   * local = NULL; @@ -1441,7 +1459,7 @@ out:                          AFR_STACK_DESTROY (transaction_frame);                  AFR_STACK_UNWIND (rename, frame, -1, op_errno, -                                  NULL, NULL, NULL, NULL, NULL); +                                  NULL, NULL, NULL, NULL, NULL, NULL);          }          return 0; @@ -1472,7 +1490,8 @@ afr_unlink_unwind (call_frame_t *frame, xlator_t *this)                  AFR_STACK_UNWIND (unlink, main_frame,                                    local->op_ret, local->op_errno,                                    &local->cont.unlink.preparent, -                                  &local->cont.unlink.postparent); +                                  &local->cont.unlink.postparent, +                                  NULL);          }          return 0; @@ -1482,7 +1501,7 @@ afr_unlink_unwind (call_frame_t *frame, xlator_t *this)  int  afr_unlink_wind_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                       int32_t op_ret, int32_t op_errno, struct iatt *preparent, -                     struct iatt *postparent) +                     struct iatt *postparent, dict_t *xdata)  {          afr_local_t *   local = NULL;          int call_count  = -1; @@ -1557,7 +1576,8 @@ afr_unlink_wind (call_frame_t *frame, xlator_t *this)                                             (void *) (long) i,                                             priv->children[i],                                             priv->children[i]->fops->unlink, -                                           &local->loc); +                                           &local->loc, local->xflag, +                                           local->xdata_req);                          if (!--call_count)                                  break; @@ -1583,7 +1603,7 @@ afr_unlink_done (call_frame_t *frame, xlator_t *this)  int32_t  afr_unlink (call_frame_t *frame, xlator_t *this, -            loc_t *loc) +            loc_t *loc, int xflag, dict_t *xdata)  {          afr_private_t * priv  = NULL;          afr_local_t   * local = NULL; @@ -1613,6 +1633,9 @@ afr_unlink (call_frame_t *frame, xlator_t *this,                  goto out;          loc_copy (&local->loc, loc); +        local->xflag = xflag; +        if (xdata) +                local->xdata_req = dict_ref (xdata);          local->transaction.fop    = afr_unlink_wind;          local->transaction.done   = afr_unlink_done; @@ -1634,7 +1657,7 @@ out:                  if (transaction_frame)                          AFR_STACK_DESTROY (transaction_frame);                  AFR_STACK_UNWIND (unlink, frame, -1, op_errno, -                                  NULL, NULL); +                                  NULL, NULL, NULL);          }          return 0; @@ -1667,7 +1690,8 @@ afr_rmdir_unwind (call_frame_t *frame, xlator_t *this)                  AFR_STACK_UNWIND (rmdir, main_frame,                                    local->op_ret, local->op_errno,                                    &local->cont.rmdir.preparent, -                                  &local->cont.rmdir.postparent); +                                  &local->cont.rmdir.postparent, +                                  NULL);          }          return 0; @@ -1677,7 +1701,7 @@ afr_rmdir_unwind (call_frame_t *frame, xlator_t *this)  int  afr_rmdir_wind_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                      int32_t op_ret, int32_t op_errno, struct iatt *preparent, -                    struct iatt *postparent) +                    struct iatt *postparent, dict_t *xdata)  {          afr_local_t *   local = NULL;          int call_count  = -1; @@ -1753,7 +1777,8 @@ afr_rmdir_wind (call_frame_t *frame, xlator_t *this)                                             (void *) (long) i,                                             priv->children[i],                                             priv->children[i]->fops->rmdir, -                                           &local->loc, local->cont.rmdir.flags); +                                           &local->loc, local->cont.rmdir.flags, +                                           NULL);                          if (!--call_count)                                  break; @@ -1779,7 +1804,7 @@ afr_rmdir_done (call_frame_t *frame, xlator_t *this)  int  afr_rmdir (call_frame_t *frame, xlator_t *this, -           loc_t *loc, int flags) +           loc_t *loc, int flags, dict_t *xdata)  {          afr_private_t * priv  = NULL;          afr_local_t   * local = NULL; @@ -1830,7 +1855,7 @@ out:          if (ret < 0) {                  if (transaction_frame)                          AFR_STACK_DESTROY (transaction_frame); -                AFR_STACK_UNWIND (rmdir, frame, -1, op_errno, NULL, NULL); +                AFR_STACK_UNWIND (rmdir, frame, -1, op_errno, NULL, NULL, NULL);          }          return 0; diff --git a/xlators/cluster/afr/src/afr-dir-write.h b/xlators/cluster/afr/src/afr-dir-write.h index 0290c6350b3..5a3494ece0a 100644 --- a/xlators/cluster/afr/src/afr-dir-write.h +++ b/xlators/cluster/afr/src/afr-dir-write.h @@ -23,38 +23,34 @@  int32_t  afr_create (call_frame_t *frame, xlator_t *this,              loc_t *loc, int32_t flags, mode_t mode, -            fd_t *fd, dict_t *params); +            mode_t umask, fd_t *fd, dict_t *xdata);  int32_t  afr_mknod (call_frame_t *frame, xlator_t *this, -	   loc_t *loc, mode_t mode, dev_t dev, dict_t *params); +	   loc_t *loc, mode_t mode, dev_t dev, mode_t umask, dict_t *xdata);  int32_t  afr_mkdir (call_frame_t *frame, xlator_t *this, -	   loc_t *loc, mode_t mode, dict_t *params); +	   loc_t *loc, mode_t mode, mode_t umask, dict_t *xdata);  int32_t  afr_unlink (call_frame_t *frame, xlator_t *this, -	    loc_t *loc); +	    loc_t *loc, int xflag, dict_t *xdata);  int32_t  afr_rmdir (call_frame_t *frame, xlator_t *this, -	   loc_t *loc, int flags); +	   loc_t *loc, int flags, dict_t *xdata);  int32_t  afr_link (call_frame_t *frame, xlator_t *this, -	  loc_t *oldloc, loc_t *newloc); +	  loc_t *oldloc, loc_t *newloc, dict_t *xdata);  int32_t  afr_rename (call_frame_t *frame, xlator_t *this, -	    loc_t *oldloc, loc_t *newloc); +	    loc_t *oldloc, loc_t *newloc, dict_t *xdata);  int  afr_symlink (call_frame_t *frame, xlator_t *this, -	     const char *linkpath, loc_t *oldloc, dict_t *params); - -int32_t -afr_setdents (call_frame_t *frame, xlator_t *this, -	      fd_t *fd, int32_t flags, dir_entry_t *entries, int32_t count); +	     const char *linkpath, loc_t *oldloc, mode_t umask, dict_t *params);  #endif /* __DIR_WRITE_H__ */ diff --git a/xlators/cluster/afr/src/afr-inode-read.c b/xlators/cluster/afr/src/afr-inode-read.c index 41ffcb9138a..097bba16e88 100644 --- a/xlators/cluster/afr/src/afr-inode-read.c +++ b/xlators/cluster/afr/src/afr-inode-read.c @@ -58,7 +58,7 @@  int32_t  afr_access_cbk (call_frame_t *frame, void *cookie, -                xlator_t *this, int32_t op_ret, int32_t op_errno) +                xlator_t *this, int32_t op_ret, int32_t op_errno, dict_t *xdata)  {          afr_private_t * priv            = NULL;          afr_local_t *   local           = NULL; @@ -92,12 +92,13 @@ afr_access_cbk (call_frame_t *frame, void *cookie,                                     (void *) (long) read_child,                                     children[next_call_child],                                     children[next_call_child]->fops->access, -                                   &local->loc, local->cont.access.mask); +                                   &local->loc, local->cont.access.mask, +                                   NULL);          }  out:          if (unwind) { -                AFR_STACK_UNWIND (access, frame, op_ret, op_errno); +                AFR_STACK_UNWIND (access, frame, op_ret, op_errno, xdata);          }          return 0; @@ -105,7 +106,8 @@ out:  int32_t -afr_access (call_frame_t *frame, xlator_t *this, loc_t *loc, int32_t mask) +afr_access (call_frame_t *frame, xlator_t *this, loc_t *loc, int32_t mask, +            dict_t *xdata)  {          afr_private_t   *priv      = NULL;          xlator_t        **children = NULL; @@ -156,12 +158,12 @@ afr_access (call_frame_t *frame, xlator_t *this, loc_t *loc, int32_t mask)                             (void *) (long) call_child,                             children[call_child],                             children[call_child]->fops->access, -                           loc, mask); +                           loc, mask, xdata);          ret = 0;  out:          if (ret < 0) -                AFR_STACK_UNWIND (access, frame, -1, op_errno); +                AFR_STACK_UNWIND (access, frame, -1, op_errno, NULL);          return 0;  } @@ -173,7 +175,7 @@ out:  int32_t  afr_stat_cbk (call_frame_t *frame, void *cookie,                xlator_t *this, int32_t op_ret, int32_t op_errno, -              struct iatt *buf) +              struct iatt *buf, dict_t *xdata)  {          afr_private_t * priv            = NULL;          afr_local_t *   local           = NULL; @@ -207,12 +209,12 @@ afr_stat_cbk (call_frame_t *frame, void *cookie,                                     (void *) (long) read_child,                                     children[next_call_child],                                     children[next_call_child]->fops->stat, -                                   &local->loc); +                                   &local->loc, NULL);          }  out:          if (unwind) { -                AFR_STACK_UNWIND (stat, frame, op_ret, op_errno, buf); +                AFR_STACK_UNWIND (stat, frame, op_ret, op_errno, buf, xdata);          }          return 0; @@ -220,7 +222,7 @@ out:  int32_t -afr_stat (call_frame_t *frame, xlator_t *this, loc_t *loc) +afr_stat (call_frame_t *frame, xlator_t *this, loc_t *loc, dict_t *xdata)  {          afr_private_t   *priv      = NULL;          afr_local_t     *local     = NULL; @@ -267,12 +269,12 @@ afr_stat (call_frame_t *frame, xlator_t *this, loc_t *loc)          STACK_WIND_COOKIE (frame, afr_stat_cbk, (void *) (long) call_child,                             children[call_child],                             children[call_child]->fops->stat, -                           loc); +                           loc, xdata);          ret = 0;  out:          if (ret < 0) -                AFR_STACK_UNWIND (stat, frame, -1, op_errno, NULL); +                AFR_STACK_UNWIND (stat, frame, -1, op_errno, NULL, NULL);          return 0;  } @@ -284,7 +286,8 @@ out:  int32_t  afr_fstat_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -               int32_t op_ret, int32_t op_errno, struct iatt *buf) +               int32_t op_ret, int32_t op_errno, struct iatt *buf, +               dict_t *xdata)  {          afr_private_t   *priv           = NULL;          afr_local_t     *local          = NULL; @@ -318,12 +321,12 @@ afr_fstat_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                                     (void *) (long) read_child,                                     children[next_call_child],                                     children[next_call_child]->fops->fstat, -                                   local->fd); +                                   local->fd, NULL);          }  out:          if (unwind) { -                AFR_STACK_UNWIND (fstat, frame, op_ret, op_errno, buf); +                AFR_STACK_UNWIND (fstat, frame, op_ret, op_errno, buf, xdata);          }          return 0; @@ -332,7 +335,7 @@ out:  int32_t  afr_fstat (call_frame_t *frame, xlator_t *this, -           fd_t *fd) +           fd_t *fd, dict_t *xdata)  {          afr_private_t   *priv      = NULL;          afr_local_t     *local     = NULL; @@ -391,12 +394,12 @@ afr_fstat (call_frame_t *frame, xlator_t *this,          STACK_WIND_COOKIE (frame, afr_fstat_cbk, (void *) (long) call_child,                             children[call_child],                             children[call_child]->fops->fstat, -                           fd); +                           fd, xdata);          ret = 0;  out:          if (ret < 0) -                AFR_STACK_UNWIND (fstat, frame, -1, op_errno, NULL); +                AFR_STACK_UNWIND (fstat, frame, -1, op_errno, NULL, NULL);          return 0;  } @@ -408,7 +411,7 @@ out:  int32_t  afr_readlink_cbk (call_frame_t *frame, void *cookie,                    xlator_t *this, int32_t op_ret, int32_t op_errno, -                  const char *buf, struct iatt *sbuf) +                  const char *buf, struct iatt *sbuf, dict_t *xdata)  {          afr_private_t * priv                  = NULL;          afr_local_t *   local                 = NULL; @@ -442,12 +445,13 @@ afr_readlink_cbk (call_frame_t *frame, void *cookie,                                     children[next_call_child],                                     children[next_call_child]->fops->readlink,                                     &local->loc, -                                   local->cont.readlink.size); +                                   local->cont.readlink.size, NULL);          }  out:          if (unwind) { -                AFR_STACK_UNWIND (readlink, frame, op_ret, op_errno, buf, sbuf); +                AFR_STACK_UNWIND (readlink, frame, op_ret, op_errno, buf, sbuf, +                                  xdata);          }          return 0; @@ -456,7 +460,7 @@ out:  int32_t  afr_readlink (call_frame_t *frame, xlator_t *this, -              loc_t *loc, size_t size) +              loc_t *loc, size_t size, dict_t *xdata)  {          afr_private_t   *priv      = NULL;          xlator_t        **children = NULL; @@ -506,12 +510,12 @@ afr_readlink (call_frame_t *frame, xlator_t *this,                             (void *) (long) call_child,                             children[call_child],                             children[call_child]->fops->readlink, -                           loc, size); +                           loc, size, xdata);          ret = 0;  out:          if (ret < 0) -                AFR_STACK_UNWIND (readlink, frame, -1, op_errno, NULL, NULL); +                AFR_STACK_UNWIND (readlink, frame, -1, op_errno, NULL, NULL, NULL);          return 0;  } @@ -574,7 +578,7 @@ __filter_xattrs (dict_t *dict)  int32_t  afr_getxattr_cbk (call_frame_t *frame, void *cookie,                    xlator_t *this, int32_t op_ret, int32_t op_errno, -                  dict_t *dict) +                  dict_t *dict, dict_t *xdata)  {          afr_private_t * priv            = NULL;          afr_local_t *   local           = NULL; @@ -608,7 +612,8 @@ afr_getxattr_cbk (call_frame_t *frame, void *cookie,                                     children[next_call_child],                                     children[next_call_child]->fops->getxattr,                                     &local->loc, -                                   local->cont.getxattr.name); +                                   local->cont.getxattr.name, +                                   NULL);          }  out: @@ -616,25 +621,25 @@ out:                  if (op_ret >= 0 && dict)                          __filter_xattrs (dict); -                AFR_STACK_UNWIND (getxattr, frame, op_ret, op_errno, dict); +                AFR_STACK_UNWIND (getxattr, frame, op_ret, op_errno, dict, xdata);          }          return 0;  }  int32_t -afr_getxattr_unwind (call_frame_t *frame, -                     int op_ret, int op_errno, dict_t *dict) +afr_getxattr_unwind (call_frame_t *frame, int op_ret, int op_errno, +                     dict_t *dict, dict_t *xdata)  { -        AFR_STACK_UNWIND (getxattr, frame, op_ret, op_errno, dict); +        AFR_STACK_UNWIND (getxattr, frame, op_ret, op_errno, dict, xdata);          return 0;  }  int32_t  afr_getxattr_clrlk_cbk (call_frame_t *frame, void *cookie,                          xlator_t *this, int32_t op_ret, int32_t op_errno, -                        dict_t *dict) +                        dict_t *dict, dict_t *xdata)  {          afr_local_t     *local                  = NULL;          afr_private_t   *priv                   = NULL; @@ -711,7 +716,7 @@ unlock:                  local->child_errno[cky] = op_errno;                  op_errno = afr_resultant_errno_get (NULL, local->child_errno,                                                      priv->child_count); -                AFR_STACK_UNWIND (getxattr, frame, op_ret, op_errno, xattr); +                AFR_STACK_UNWIND (getxattr, frame, op_ret, op_errno, xattr, xdata);                  if (xattr)                          dict_unref (xattr); @@ -726,7 +731,7 @@ unlock:  int32_t  afr_getxattr_node_uuid_cbk (call_frame_t *frame, void *cookie,                              xlator_t *this, int32_t op_ret, int32_t op_errno, -                            dict_t *dict) +                            dict_t *dict, dict_t *xdata)  {          afr_private_t  *priv            = NULL;          afr_local_t    *local           = NULL; @@ -759,12 +764,13 @@ afr_getxattr_node_uuid_cbk (call_frame_t *frame, void *cookie,                                     children[curr_call_child],                                     children[curr_call_child]->fops->getxattr,                                     &local->loc, -                                   local->cont.getxattr.name); +                                   local->cont.getxattr.name, +                                   NULL);          }   unwind:          if (unwind) -                AFR_STACK_UNWIND (getxattr, frame, op_ret, op_errno, dict); +                AFR_STACK_UNWIND (getxattr, frame, op_ret, op_errno, dict, NULL);          return 0;  } @@ -772,7 +778,7 @@ afr_getxattr_node_uuid_cbk (call_frame_t *frame, void *cookie,  int32_t  afr_getxattr_pathinfo_cbk (call_frame_t *frame, void *cookie,                             xlator_t *this, int32_t op_ret, int32_t op_errno, -                           dict_t *dict) +                           dict_t *dict, dict_t *xdata)  {          afr_local_t *local          = NULL;          int32_t      callcnt        = 0; @@ -871,7 +877,8 @@ afr_getxattr_pathinfo_cbk (call_frame_t *frame, void *cookie,                                  " key in dict");          unwind: -                AFR_STACK_UNWIND (getxattr, frame, op_ret, op_errno, nxattr); +                AFR_STACK_UNWIND (getxattr, frame, op_ret, op_errno, nxattr, +                                  xdata);                  if (nxattr)                          dict_unref (nxattr); @@ -924,14 +931,14 @@ afr_getxattr_frm_all_children (xlator_t *this, call_frame_t *frame,                  STACK_WIND_COOKIE (frame, cbk,                                     (void *) (long) i,                                     children[i], children[i]->fops->getxattr, -                                   loc, name); +                                   loc, name, NULL);          }          return;  }  int32_t  afr_getxattr (call_frame_t *frame, xlator_t *this, -              loc_t *loc, const char *name) +              loc_t *loc, const char *name, dict_t *xdata)  {          afr_private_t           *priv         = NULL;          xlator_t                **children    = NULL; @@ -963,22 +970,71 @@ afr_getxattr (call_frame_t *frame, xlator_t *this,                  goto out;          loc_copy (&local->loc, loc); -        if (name) -                local->cont.getxattr.name = gf_strdup (name); +        if (!name) +                goto no_name; + +        local->cont.getxattr.name = gf_strdup (name); + +        if (!strncmp (name, AFR_XATTR_PREFIX, +                      strlen (AFR_XATTR_PREFIX))) { +                gf_log (this->name, GF_LOG_INFO, +                        "%s: no data present for key %s", +                        loc->path, name); +                op_errno = ENODATA; +                goto out; +        } +        if ((strcmp (GF_XATTR_MARKER_KEY, name) == 0) +            && (-1 == frame->root->pid)) { + +                local->marker.call_count = priv->child_count; + +                sub_volumes = alloca ( priv->child_count * sizeof (xlator_t *)); +                for (i = 0, trav = this->children; trav ; +                     trav = trav->next, i++) { + +                        *(sub_volumes + i)  = trav->xlator; +                } +                if (cluster_getmarkerattr (frame, this, loc, name, +                                           local, afr_getxattr_unwind, +                                           sub_volumes, +                                           priv->child_count, +                                           MARKER_UUID_TYPE, +                                           priv->vol_uuid)) { -        if (name) { -                if (!strncmp (name, AFR_XATTR_PREFIX, -                              strlen (AFR_XATTR_PREFIX))) {                          gf_log (this->name, GF_LOG_INFO, -                                "%s: no data present for key %s", +                                "%s: failed to get marker attr (%s)",                                  loc->path, name); -                        op_errno = ENODATA; +                        op_errno = EINVAL;                          goto out;                  } -                if ((strcmp (GF_XATTR_MARKER_KEY, name) == 0) -                    && (-1 == frame->root->pid)) { +                return 0; +        } + +        /* +         * if we are doing getxattr with pathinfo as the key then we +         * collect information from all childs +         */ +        if (afr_is_special_xattr (name, &cbk)) { +                afr_getxattr_frm_all_children (this, frame, name, +                                               loc, cbk); +                return 0; +        } + +        if (XATTR_IS_NODE_UUID (name)) { +                i = 0; +                STACK_WIND_COOKIE (frame, afr_getxattr_node_uuid_cbk, +                                   (void *) (long) i, +                                   children[i], +                                   children[i]->fops->getxattr, +                                   loc, name, xdata); +                return 0; +        } + +        if (*priv->vol_uuid) { +                if ((match_uuid_local (name, priv->vol_uuid) == 0) +                    && (-1 == frame->root->pid)) {                          local->marker.call_count = priv->child_count;                          sub_volumes = alloca ( priv->child_count * sizeof (xlator_t *)); @@ -986,15 +1042,16 @@ afr_getxattr (call_frame_t *frame, xlator_t *this,                               trav = trav->next, i++) {                                  *(sub_volumes + i)  = trav->xlator; +                          } -                        if (cluster_getmarkerattr (frame, this, loc, name, -                                                   local, afr_getxattr_unwind, +                        if (cluster_getmarkerattr (frame, this, loc, +                                                   name, local, +                                                   afr_getxattr_unwind,                                                     sub_volumes,                                                     priv->child_count, -                                                   MARKER_UUID_TYPE, +                                                   MARKER_XTIME_TYPE,                                                     priv->vol_uuid)) { -                                  gf_log (this->name, GF_LOG_INFO,                                          "%s: failed to get marker attr (%s)",                                          loc->path, name); @@ -1004,60 +1061,9 @@ afr_getxattr (call_frame_t *frame, xlator_t *this,                          return 0;                  } - -                /* -                 * if we are doing getxattr with pathinfo as the key then we -                 * collect information from all childs -                 */ -                if (afr_is_special_xattr (name, &cbk)) { -                        afr_getxattr_frm_all_children (this, frame, name, -                                                       loc, cbk); -                        return 0; -                } - -                if (XATTR_IS_NODE_UUID (name)) { -                        i = 0; -                        STACK_WIND_COOKIE (frame, afr_getxattr_node_uuid_cbk, -                                           (void *) (long) i, -                                           children[i], -                                           children[i]->fops->getxattr, -                                           loc, name); -                        return 0; -                } - -                if (*priv->vol_uuid) { -                        if ((match_uuid_local (name, priv->vol_uuid) == 0) -                            && (-1 == frame->root->pid)) { - -                                local->marker.call_count = priv->child_count; - -                                sub_volumes = alloca ( priv->child_count * sizeof (xlator_t *)); -                                for (i = 0, trav = this->children; trav ; -                                     trav = trav->next, i++) { - -                                        *(sub_volumes + i)  = trav->xlator; - -                                } - -                                if (cluster_getmarkerattr (frame, this, loc, -                                                           name, local, -                                                           afr_getxattr_unwind, -                                                           sub_volumes, -                                                           priv->child_count, -                                                           MARKER_XTIME_TYPE, -                                                           priv->vol_uuid)) { -                                        gf_log (this->name, GF_LOG_INFO, -                                                "%s: failed to get marker attr (%s)", -                                                loc->path, name); -                                        op_errno = EINVAL; -                                        goto out; -                                } - -                                return 0; -                        } -                }          } +no_name:          local->fresh_children = afr_children_create (priv->child_count);          if (!local->fresh_children) {                  op_errno = ENOMEM; @@ -1078,12 +1084,12 @@ afr_getxattr (call_frame_t *frame, xlator_t *this,                             (void *) (long) call_child,                             children[call_child],                             children[call_child]->fops->getxattr, -                           loc, name); +                           loc, name, xdata);          ret = 0;  out:          if (ret < 0) -                AFR_STACK_UNWIND (getxattr, frame, -1, op_errno, NULL); +                AFR_STACK_UNWIND (getxattr, frame, -1, op_errno, NULL, NULL);          return 0;  } @@ -1093,7 +1099,7 @@ out:  int32_t  afr_fgetxattr_cbk (call_frame_t *frame, void *cookie,                     xlator_t *this, int32_t op_ret, int32_t op_errno, -                   dict_t *dict) +                   dict_t *dict, dict_t *xdata)  {          afr_private_t * priv            = NULL;          afr_local_t *   local           = NULL; @@ -1127,7 +1133,8 @@ afr_fgetxattr_cbk (call_frame_t *frame, void *cookie,                                     children[next_call_child],                                     children[next_call_child]->fops->fgetxattr,                                     local->fd, -                                   local->cont.getxattr.name); +                                   local->cont.getxattr.name, +                                   NULL);          }  out: @@ -1135,7 +1142,8 @@ out:                  if (op_ret >= 0 && dict)                          __filter_xattrs (dict); -                AFR_STACK_UNWIND (fgetxattr, frame, op_ret, op_errno, dict); +                AFR_STACK_UNWIND (fgetxattr, frame, op_ret, op_errno, dict, +                                  xdata);          }          return 0; @@ -1143,16 +1151,16 @@ out:  int32_t  afr_fgetxattr_unwind (call_frame_t *frame, -                      int op_ret, int op_errno, dict_t *dict) +                      int op_ret, int op_errno, dict_t *dict, dict_t *xdata)  { -        AFR_STACK_UNWIND (fgetxattr, frame, op_ret, op_errno, dict); +        AFR_STACK_UNWIND (fgetxattr, frame, op_ret, op_errno, dict, xdata);          return 0;  }  int32_t  afr_fgetxattr (call_frame_t *frame, xlator_t *this, -               fd_t *fd, const char *name) +               fd_t *fd, const char *name, dict_t *xdata)  {          afr_private_t   *priv         = NULL;          xlator_t        **children    = NULL; @@ -1208,12 +1216,12 @@ afr_fgetxattr (call_frame_t *frame, xlator_t *this,                             (void *) (long) call_child,                             children[call_child],                             children[call_child]->fops->fgetxattr, -                           fd, name); +                           fd, name, xdata);          op_ret = 0;  out:          if (op_ret == -1) { -                AFR_STACK_UNWIND (fgetxattr, frame, op_ret, op_errno, NULL); +                AFR_STACK_UNWIND (fgetxattr, frame, op_ret, op_errno, NULL, NULL);          }          return 0;  } @@ -1239,7 +1247,7 @@ int32_t  afr_readv_cbk (call_frame_t *frame, void *cookie,                 xlator_t *this, int32_t op_ret, int32_t op_errno,                 struct iovec *vector, int32_t count, struct iatt *buf, -               struct iobref *iobref) +               struct iobref *iobref, dict_t *xdata)  {          afr_private_t * priv            = NULL;          afr_local_t *   local           = NULL; @@ -1281,13 +1289,14 @@ afr_readv_cbk (call_frame_t *frame, void *cookie,                                     children[next_call_child]->fops->readv,                                     local->fd, local->cont.readv.size,                                     local->cont.readv.offset, -                                   local->cont.readv.flags); +                                   local->cont.readv.flags, +                                   NULL);          }  out:          if (unwind) {                  AFR_STACK_UNWIND (readv, frame, op_ret, op_errno, -                                  vector, count, buf, iobref); +                                  vector, count, buf, iobref, xdata);          }          return 0; @@ -1296,7 +1305,7 @@ out:  int32_t  afr_readv (call_frame_t *frame, xlator_t *this, -           fd_t *fd, size_t size, off_t offset, uint32_t flags) +           fd_t *fd, size_t size, off_t offset, uint32_t flags, dict_t *xdata)  {          afr_private_t * priv       = NULL;          afr_local_t   * local      = NULL; @@ -1352,13 +1361,13 @@ afr_readv (call_frame_t *frame, xlator_t *this,                             (void *) (long) call_child,                             children[call_child],                             children[call_child]->fops->readv, -                           fd, size, offset, flags); +                           fd, size, offset, flags, xdata);          ret = 0;  out:          if (ret < 0) {                  AFR_STACK_UNWIND (readv, frame, -1, op_errno, NULL, 0, NULL, -                                  NULL); +                                  NULL, NULL);          }          return 0;  } diff --git a/xlators/cluster/afr/src/afr-inode-read.h b/xlators/cluster/afr/src/afr-inode-read.h index 5ec7411b11d..fb04ec41861 100644 --- a/xlators/cluster/afr/src/afr-inode-read.h +++ b/xlators/cluster/afr/src/afr-inode-read.h @@ -22,30 +22,30 @@  int32_t  afr_access (call_frame_t *frame, xlator_t *this, -	    loc_t *loc, int32_t mask); +	    loc_t *loc, int32_t mask, dict_t *xdata);  int32_t  afr_stat (call_frame_t *frame, xlator_t *this, -	  loc_t *loc); +	  loc_t *loc, dict_t *xdata);  int32_t  afr_fstat (call_frame_t *frame, xlator_t *this, -	   fd_t *fd); +	   fd_t *fd, dict_t *xdata);  int32_t  afr_readlink (call_frame_t *frame, xlator_t *this, -	      loc_t *loc, size_t size); +	      loc_t *loc, size_t size, dict_t *xdata);  int32_t  afr_readv (call_frame_t *frame, xlator_t *this, -	   fd_t *fd, size_t size, off_t offset, uint32_t flags); +	   fd_t *fd, size_t size, off_t offset, uint32_t flags, dict_t *xdata);  int32_t  afr_getxattr (call_frame_t *frame, xlator_t *this, -	      loc_t *loc, const char *name); +	      loc_t *loc, const char *name, dict_t *xdata);  int32_t  afr_fgetxattr (call_frame_t *frame, xlator_t *this, -               fd_t *fd, const char *name); +               fd_t *fd, const char *name, dict_t *xdata);  #endif /* __INODE_READ_H__ */ diff --git a/xlators/cluster/afr/src/afr-inode-write.c b/xlators/cluster/afr/src/afr-inode-write.c index 1d25949db71..368a68bd688 100644 --- a/xlators/cluster/afr/src/afr-inode-write.c +++ b/xlators/cluster/afr/src/afr-inode-write.c @@ -70,7 +70,8 @@ afr_writev_unwind (call_frame_t *frame, xlator_t *this)                  AFR_STACK_UNWIND (writev, main_frame,                                    local->op_ret, local->op_errno,                                    &local->cont.writev.prebuf, -                                  &local->cont.writev.postbuf); +                                  &local->cont.writev.postbuf, +                                  NULL);          }          return 0;  } @@ -79,7 +80,7 @@ afr_writev_unwind (call_frame_t *frame, xlator_t *this)  int  afr_writev_wind_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                       int32_t op_ret, int32_t op_errno, struct iatt *prebuf, -                     struct iatt *postbuf) +                     struct iatt *postbuf, dict_t *xdata)  {          afr_local_t *   local = NULL;          int child_index = (long) cookie; @@ -158,7 +159,8 @@ afr_writev_wind (call_frame_t *frame, xlator_t *this)                                             local->cont.writev.count,                                             local->cont.writev.offset,                                             local->cont.writev.flags, -                                           local->cont.writev.iobref); +                                           local->cont.writev.iobref, +                                           NULL);                          if (!--call_count)                                  break; @@ -231,7 +233,7 @@ out:          if (op_ret == -1) {                  if (transaction_frame)                          AFR_STACK_DESTROY (transaction_frame); -                AFR_STACK_UNWIND (writev, frame, op_ret, op_errno, NULL, NULL); +                AFR_STACK_UNWIND (writev, frame, op_ret, op_errno, NULL, NULL, NULL);          }          return 0; @@ -442,7 +444,7 @@ out:  int  afr_writev (call_frame_t *frame, xlator_t *this, fd_t *fd,              struct iovec *vector, int32_t count, off_t offset, -            uint32_t flags, struct iobref *iobref) +            uint32_t flags, struct iobref *iobref, dict_t *xdata)  {          afr_private_t * priv  = NULL;          afr_local_t   * local = NULL; @@ -482,7 +484,7 @@ afr_writev (call_frame_t *frame, xlator_t *this, fd_t *fd,          ret = 0;  out:          if (ret < 0) -                AFR_STACK_UNWIND (writev, frame, -1, op_errno, NULL, NULL); +                AFR_STACK_UNWIND (writev, frame, -1, op_errno, NULL, NULL, NULL);          return 0;  } @@ -512,7 +514,8 @@ afr_truncate_unwind (call_frame_t *frame, xlator_t *this)                  AFR_STACK_UNWIND (truncate, main_frame, local->op_ret,                                    local->op_errno,                                    &local->cont.truncate.prebuf, -                                  &local->cont.truncate.postbuf); +                                  &local->cont.truncate.postbuf, +                                  NULL);          }          return 0; @@ -522,7 +525,7 @@ afr_truncate_unwind (call_frame_t *frame, xlator_t *this)  int  afr_truncate_wind_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                         int32_t op_ret, int32_t op_errno, struct iatt *prebuf, -                       struct iatt *postbuf) +                       struct iatt *postbuf, dict_t *xdata)  {          afr_local_t *   local = NULL;          afr_private_t * priv  = NULL; @@ -609,7 +612,8 @@ afr_truncate_wind (call_frame_t *frame, xlator_t *this)                                             priv->children[i],                                             priv->children[i]->fops->truncate,                                             &local->loc, -                                           local->cont.truncate.offset); +                                           local->cont.truncate.offset, +                                           NULL);                          if (!--call_count)                                  break; @@ -637,7 +641,7 @@ afr_truncate_done (call_frame_t *frame, xlator_t *this)  int  afr_truncate (call_frame_t *frame, xlator_t *this, -              loc_t *loc, off_t offset) +              loc_t *loc, off_t offset, dict_t *xdata)  {          afr_private_t * priv  = NULL;          afr_local_t   * local = NULL; @@ -685,7 +689,7 @@ out:          if (ret < 0) {                  if (transaction_frame)                          AFR_STACK_DESTROY (transaction_frame); -                AFR_STACK_UNWIND (truncate, frame, -1, op_errno, NULL, NULL); +                AFR_STACK_UNWIND (truncate, frame, -1, op_errno, NULL, NULL, NULL);          }          return 0; @@ -717,7 +721,8 @@ afr_ftruncate_unwind (call_frame_t *frame, xlator_t *this)                  AFR_STACK_UNWIND (ftruncate, main_frame, local->op_ret,                                    local->op_errno,                                    &local->cont.ftruncate.prebuf, -                                  &local->cont.ftruncate.postbuf); +                                  &local->cont.ftruncate.postbuf, +                                  NULL);          }          return 0;  } @@ -726,7 +731,7 @@ afr_ftruncate_unwind (call_frame_t *frame, xlator_t *this)  int  afr_ftruncate_wind_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                          int32_t op_ret, int32_t op_errno, struct iatt *prebuf, -                        struct iatt *postbuf) +                        struct iatt *postbuf, dict_t *xdata)  {          afr_local_t *   local = NULL;          afr_private_t * priv  = NULL; @@ -812,7 +817,9 @@ afr_ftruncate_wind (call_frame_t *frame, xlator_t *this)                                             (void *) (long) i,                                             priv->children[i],                                             priv->children[i]->fops->ftruncate, -                                           local->fd, local->cont.ftruncate.offset); +                                           local->fd, +                                           local->cont.ftruncate.offset, +                                           NULL);                          if (!--call_count)                                  break; @@ -874,7 +881,8 @@ out:          if (op_ret == -1) {                  if (transaction_frame)                          AFR_STACK_DESTROY (transaction_frame); -                AFR_STACK_UNWIND (ftruncate, frame, op_ret, op_errno, NULL, NULL); +                AFR_STACK_UNWIND (ftruncate, frame, op_ret, op_errno, NULL, +                                  NULL, NULL);          }          return 0; @@ -883,7 +891,7 @@ out:  int  afr_ftruncate (call_frame_t *frame, xlator_t *this, -               fd_t *fd, off_t offset) +               fd_t *fd, off_t offset, dict_t *xdata)  {          afr_private_t * priv  = NULL;          afr_local_t   * local = NULL; @@ -922,7 +930,7 @@ out:          if (ret < 0) {                  if (transaction_frame)                          AFR_STACK_DESTROY (transaction_frame); -                AFR_STACK_UNWIND (ftruncate, frame, -1, op_errno, NULL, NULL); +                AFR_STACK_UNWIND (ftruncate, frame, -1, op_errno, NULL, NULL, NULL);          }          return 0; @@ -952,7 +960,8 @@ afr_setattr_unwind (call_frame_t *frame, xlator_t *this)                  AFR_STACK_UNWIND (setattr, main_frame, local->op_ret,                                    local->op_errno,                                    &local->cont.setattr.preop_buf, -                                  &local->cont.setattr.postop_buf); +                                  &local->cont.setattr.postop_buf, +                                  NULL);          }          return 0; @@ -962,7 +971,7 @@ afr_setattr_unwind (call_frame_t *frame, xlator_t *this)  int  afr_setattr_wind_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                        int32_t op_ret, int32_t op_errno, -                      struct iatt *preop, struct iatt *postop) +                      struct iatt *preop, struct iatt *postop, dict_t *xdata)  {          afr_local_t *   local = NULL;          afr_private_t * priv  = NULL; @@ -1050,7 +1059,8 @@ afr_setattr_wind (call_frame_t *frame, xlator_t *this)                                             priv->children[i]->fops->setattr,                                             &local->loc,                                             &local->cont.setattr.in_buf, -                                           local->cont.setattr.valid); +                                           local->cont.setattr.valid, +                                           NULL);                          if (!--call_count)                                  break; @@ -1078,7 +1088,7 @@ afr_setattr_done (call_frame_t *frame, xlator_t *this)  int  afr_setattr (call_frame_t *frame, xlator_t *this, -             loc_t *loc, struct iatt *buf, int32_t valid) +             loc_t *loc, struct iatt *buf, int32_t valid, dict_t *xdata)  {          afr_private_t * priv  = NULL;          afr_local_t   * local = NULL; @@ -1127,7 +1137,7 @@ out:          if (ret < 0) {                  if (transaction_frame)                          AFR_STACK_DESTROY (transaction_frame); -                AFR_STACK_UNWIND (setattr, frame, -1, op_errno, NULL, NULL); +                AFR_STACK_UNWIND (setattr, frame, -1, op_errno, NULL, NULL, NULL);          }          return 0; @@ -1155,7 +1165,8 @@ afr_fsetattr_unwind (call_frame_t *frame, xlator_t *this)                  AFR_STACK_UNWIND (fsetattr, main_frame, local->op_ret,                                    local->op_errno,                                    &local->cont.fsetattr.preop_buf, -                                  &local->cont.fsetattr.postop_buf); +                                  &local->cont.fsetattr.postop_buf, +                                  NULL);          }          return 0; @@ -1165,7 +1176,7 @@ afr_fsetattr_unwind (call_frame_t *frame, xlator_t *this)  int  afr_fsetattr_wind_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                         int32_t op_ret, int32_t op_errno, -                       struct iatt *preop, struct iatt *postop) +                       struct iatt *preop, struct iatt *postop, dict_t *xdata)  {          afr_local_t *   local = NULL;          afr_private_t * priv  = NULL; @@ -1253,7 +1264,8 @@ afr_fsetattr_wind (call_frame_t *frame, xlator_t *this)                                             priv->children[i]->fops->fsetattr,                                             local->fd,                                             &local->cont.fsetattr.in_buf, -                                           local->cont.fsetattr.valid); +                                           local->cont.fsetattr.valid, +                                           NULL);                          if (!--call_count)                                  break; @@ -1280,7 +1292,7 @@ afr_fsetattr_done (call_frame_t *frame, xlator_t *this)  int  afr_fsetattr (call_frame_t *frame, xlator_t *this, -              fd_t *fd, struct iatt *buf, int32_t valid) +              fd_t *fd, struct iatt *buf, int32_t valid, dict_t *xdata)  {          afr_private_t * priv  = NULL;          afr_local_t   * local = NULL; @@ -1335,7 +1347,7 @@ out:          if (ret < 0) {                  if (transaction_frame)                          AFR_STACK_DESTROY (transaction_frame); -                AFR_STACK_UNWIND (fsetattr, frame, -1, op_errno, NULL, NULL); +                AFR_STACK_UNWIND (fsetattr, frame, -1, op_errno, NULL, NULL, NULL);          }          return 0; @@ -1363,7 +1375,8 @@ afr_setxattr_unwind (call_frame_t *frame, xlator_t *this)          if (main_frame) {                  AFR_STACK_UNWIND (setxattr, main_frame, -                                  local->op_ret, local->op_errno); +                                  local->op_ret, local->op_errno, +                                  NULL);          }          return 0;  } @@ -1371,7 +1384,7 @@ afr_setxattr_unwind (call_frame_t *frame, xlator_t *this)  int  afr_setxattr_wind_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                       int32_t op_ret, int32_t op_errno) +                       int32_t op_ret, int32_t op_errno, dict_t *xdata)  {          afr_local_t      *local         = NULL;          afr_private_t    *priv          = NULL; @@ -1440,7 +1453,8 @@ afr_setxattr_wind (call_frame_t *frame, xlator_t *this)                                             priv->children[i]->fops->setxattr,                                             &local->loc,                                             local->cont.setxattr.dict, -                                           local->cont.setxattr.flags); +                                           local->cont.setxattr.flags, +                                           NULL);                          if (!--call_count)                                  break; @@ -1465,7 +1479,7 @@ afr_setxattr_done (call_frame_t *frame, xlator_t *this)  int  afr_setxattr (call_frame_t *frame, xlator_t *this, -              loc_t *loc, dict_t *dict, int32_t flags) +              loc_t *loc, dict_t *dict, int32_t flags, dict_t *xdata)  {          afr_private_t  *priv              = NULL;          afr_local_t    *local             = NULL; @@ -1521,7 +1535,7 @@ out:          if (ret < 0) {                  if (transaction_frame)                          AFR_STACK_DESTROY (transaction_frame); -                AFR_STACK_UNWIND (setxattr, frame, -1, op_errno); +                AFR_STACK_UNWIND (setxattr, frame, -1, op_errno, NULL);          }          return 0; @@ -1548,7 +1562,8 @@ afr_fsetxattr_unwind (call_frame_t *frame, xlator_t *this)          if (main_frame) {                  AFR_STACK_UNWIND (fsetxattr, main_frame, -                                  local->op_ret, local->op_errno); +                                  local->op_ret, local->op_errno, +                                  NULL);          }          return 0;  } @@ -1556,7 +1571,7 @@ afr_fsetxattr_unwind (call_frame_t *frame, xlator_t *this)  int  afr_fsetxattr_wind_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                        int32_t op_ret, int32_t op_errno) +                        int32_t op_ret, int32_t op_errno, dict_t *xdata)  {          afr_local_t     *local       = NULL;          afr_private_t   *priv        = NULL; @@ -1625,7 +1640,8 @@ afr_fsetxattr_wind (call_frame_t *frame, xlator_t *this)                                             priv->children[i]->fops->fsetxattr,                                             local->fd,                                             local->cont.fsetxattr.dict, -                                           local->cont.fsetxattr.flags); +                                           local->cont.fsetxattr.flags, +                                           NULL);                          if (!--call_count)                                  break; @@ -1650,7 +1666,7 @@ afr_fsetxattr_done (call_frame_t *frame, xlator_t *this)  int  afr_fsetxattr (call_frame_t *frame, xlator_t *this, -               fd_t *fd, dict_t *dict, int32_t flags) +               fd_t *fd, dict_t *dict, int32_t flags, dict_t *xdata)  {          afr_private_t    *priv              = NULL;          afr_local_t      *local             = NULL; @@ -1711,7 +1727,7 @@ out:          if (ret < 0) {                  if (transaction_frame)                          AFR_STACK_DESTROY (transaction_frame); -                AFR_STACK_UNWIND (fsetxattr, frame, -1, op_errno); +                AFR_STACK_UNWIND (fsetxattr, frame, -1, op_errno, NULL);          }          return 0; @@ -1741,7 +1757,8 @@ afr_removexattr_unwind (call_frame_t *frame, xlator_t *this)          if (main_frame) {                  AFR_STACK_UNWIND (removexattr, main_frame, -                                  local->op_ret, local->op_errno); +                                  local->op_ret, local->op_errno, +                                  NULL);          }          return 0;  } @@ -1749,7 +1766,7 @@ afr_removexattr_unwind (call_frame_t *frame, xlator_t *this)  int  afr_removexattr_wind_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                          int32_t op_ret, int32_t op_errno) +                          int32_t op_ret, int32_t op_errno, dict_t *xdata)  {          afr_local_t *   local = NULL;          afr_private_t * priv  = NULL; @@ -1817,7 +1834,8 @@ afr_removexattr_wind (call_frame_t *frame, xlator_t *this)                                             priv->children[i],                                             priv->children[i]->fops->removexattr,                                             &local->loc, -                                           local->cont.removexattr.name); +                                           local->cont.removexattr.name, +                                           NULL);                          if (!--call_count)                                  break; @@ -1843,7 +1861,7 @@ afr_removexattr_done (call_frame_t *frame, xlator_t *this)  int  afr_removexattr (call_frame_t *frame, xlator_t *this, -                 loc_t *loc, const char *name) +                 loc_t *loc, const char *name, dict_t *xdata)  {          afr_private_t   *priv              = NULL;          afr_local_t     *local             = NULL; @@ -1899,7 +1917,7 @@ out:          if (ret < 0) {                  if (transaction_frame)                          AFR_STACK_DESTROY (transaction_frame); -                AFR_STACK_UNWIND (removexattr, frame, -1, op_errno); +                AFR_STACK_UNWIND (removexattr, frame, -1, op_errno, NULL);          }          return 0; @@ -1924,7 +1942,8 @@ afr_fremovexattr_unwind (call_frame_t *frame, xlator_t *this)          if (main_frame) {                  AFR_STACK_UNWIND (fremovexattr, main_frame, -                                  local->op_ret, local->op_errno); +                                  local->op_ret, local->op_errno, +                                  NULL);          }          return 0;  } @@ -1932,7 +1951,7 @@ afr_fremovexattr_unwind (call_frame_t *frame, xlator_t *this)  int  afr_fremovexattr_wind_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                          int32_t op_ret, int32_t op_errno) +                          int32_t op_ret, int32_t op_errno, dict_t *xdata)  {          afr_local_t *   local = NULL;          afr_private_t * priv  = NULL; @@ -2000,7 +2019,8 @@ afr_fremovexattr_wind (call_frame_t *frame, xlator_t *this)                                             priv->children[i],                                             priv->children[i]->fops->fremovexattr,                                             local->fd, -                                           local->cont.removexattr.name); +                                           local->cont.removexattr.name, +                                           NULL);                          if (!--call_count)                                  break; @@ -2026,7 +2046,7 @@ afr_fremovexattr_done (call_frame_t *frame, xlator_t *this)  int  afr_fremovexattr (call_frame_t *frame, xlator_t *this, -                  fd_t *fd, const char *name) +                  fd_t *fd, const char *name, dict_t *xdata)  {          afr_private_t * priv  = NULL;          afr_local_t   * local = NULL; @@ -2086,7 +2106,7 @@ out:          if (op_ret == -1) {                  if (transaction_frame)                          AFR_STACK_DESTROY (transaction_frame); -                AFR_STACK_UNWIND (fremovexattr, frame, op_ret, op_errno); +                AFR_STACK_UNWIND (fremovexattr, frame, op_ret, op_errno, NULL);          }          return 0; diff --git a/xlators/cluster/afr/src/afr-inode-write.h b/xlators/cluster/afr/src/afr-inode-write.h index 729a490d562..437ee687e1d 100644 --- a/xlators/cluster/afr/src/afr-inode-write.h +++ b/xlators/cluster/afr/src/afr-inode-write.h @@ -22,59 +22,59 @@  int32_t  afr_chmod (call_frame_t *frame, xlator_t *this, -	   loc_t *loc, mode_t mode); +	   loc_t *loc, mode_t mode, dict_t *xdata);  int32_t  afr_chown (call_frame_t *frame, xlator_t *this, -	   loc_t *loc, uid_t uid, gid_t gid); +	   loc_t *loc, uid_t uid, gid_t gid, dict_t *xdata);  int  afr_fchown (call_frame_t *frame, xlator_t *this, -	    fd_t *fd, uid_t uid, gid_t gid); +	    fd_t *fd, uid_t uid, gid_t gid, dict_t *xdata);  int32_t  afr_fchmod (call_frame_t *frame, xlator_t *this, -	    fd_t *fd, mode_t mode); +	    fd_t *fd, mode_t mode, dict_t *xdata);  int32_t  afr_writev (call_frame_t *frame, xlator_t *this, fd_t *fd,  	    struct iovec *vector, int32_t count, off_t offset, -            uint32_t flags, struct iobref *iobref); +            uint32_t flags, struct iobref *iobref, dict_t *xdata);  int32_t  afr_truncate (call_frame_t *frame, xlator_t *this, -	      loc_t *loc, off_t offset); +	      loc_t *loc, off_t offset, dict_t *xdata);  int32_t  afr_ftruncate (call_frame_t *frame, xlator_t *this, -	       fd_t *fd, off_t offset); +	       fd_t *fd, off_t offset, dict_t *xdata);  int32_t  afr_utimens (call_frame_t *frame, xlator_t *this, -	     loc_t *loc, struct timespec tv[2]); +	     loc_t *loc, struct timespec tv[2], dict_t *xdata);  int  afr_setattr (call_frame_t *frame, xlator_t *this, -             loc_t *loc, struct iatt *buf, int32_t valid); +             loc_t *loc, struct iatt *buf, int32_t valid, dict_t *xdata);  int  afr_fsetattr (call_frame_t *frame, xlator_t *this, -              fd_t *fd, struct iatt *buf, int32_t valid); +              fd_t *fd, struct iatt *buf, int32_t valid, dict_t *xdata);  int32_t  afr_setxattr (call_frame_t *frame, xlator_t *this, -              loc_t *loc, dict_t *dict, int32_t flags); +              loc_t *loc, dict_t *dict, int32_t flags, dict_t *xdata);  int32_t  afr_fsetxattr (call_frame_t *frame, xlator_t *this, -               fd_t *fd, dict_t *dict, int32_t flags); +               fd_t *fd, dict_t *dict, int32_t flags, dict_t *xdata);  int32_t  afr_removexattr (call_frame_t *frame, xlator_t *this, -		 loc_t *loc, const char *name); +		 loc_t *loc, const char *name, dict_t *xdata);  int32_t  afr_fremovexattr (call_frame_t *frame, xlator_t *this, -                  fd_t *fd, const char *name); +                  fd_t *fd, const char *name, dict_t *xdata);  #endif /* __INODE_WRITE_H__ */ diff --git a/xlators/cluster/afr/src/afr-lk-common.c b/xlators/cluster/afr/src/afr-lk-common.c index 55dd60e884d..dfdde2975f7 100644 --- a/xlators/cluster/afr/src/afr-lk-common.c +++ b/xlators/cluster/afr/src/afr-lk-common.c @@ -527,7 +527,7 @@ afr_locked_nodes_count (unsigned char *locked_nodes, int child_count)  /* FIXME: What if UNLOCK fails */  static int32_t  afr_unlock_common_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                       int32_t op_ret, int32_t op_errno) +                       int32_t op_ret, int32_t op_errno, dict_t *xdata)  {          afr_local_t         *local    = NULL;          afr_internal_lock_t *int_lock = NULL; @@ -553,7 +553,7 @@ afr_unlock_common_cbk (call_frame_t *frame, void *cookie, xlator_t *this,  static int32_t  afr_unlock_inodelk_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                        int32_t op_ret, int32_t op_errno) +                        int32_t op_ret, int32_t op_errno, dict_t *xdata)  {          afr_local_t         *local = NULL;          afr_internal_lock_t *int_lock = NULL; @@ -577,7 +577,7 @@ afr_unlock_inodelk_cbk (call_frame_t *frame, void *cookie, xlator_t *this,          if (local->transaction.eager_lock)                  local->transaction.eager_lock[child_index] = 0; -        afr_unlock_common_cbk (frame, cookie, this, op_ret, op_errno); +        afr_unlock_common_cbk (frame, cookie, this, op_ret, op_errno, xdata);          return 0; @@ -654,7 +654,7 @@ afr_unlock_inodelk (call_frame_t *frame, xlator_t *this)                          if (piggyback) {                                  afr_unlock_inodelk_cbk (frame, (void *) (long) i, -                                                        this, 1, 0); +                                                        this, 1, 0, NULL);                                  if (!--call_count)                                          break;                                  continue; @@ -676,7 +676,7 @@ afr_unlock_inodelk (call_frame_t *frame, xlator_t *this)                                             priv->children[i],                                             priv->children[i]->fops->finodelk,                                             this->name, local->fd, -                                           F_SETLK, flock_use); +                                           F_SETLK, flock_use, NULL);                          if (!--call_count)                                  break; @@ -691,7 +691,7 @@ afr_unlock_inodelk (call_frame_t *frame, xlator_t *this)                                             priv->children[i],                                             priv->children[i]->fops->inodelk,                                             this->name, &local->loc, -                                           F_SETLK, &flock); +                                           F_SETLK, &flock, NULL);                          if (!--call_count)                                  break; @@ -703,7 +703,7 @@ out:  static int32_t  afr_unlock_entrylk_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                        int32_t op_ret, int32_t op_errno) +                        int32_t op_ret, int32_t op_errno, dict_t *xdata)  {          afr_local_t         *local = NULL;          int32_t             child_index = (long)cookie; @@ -720,7 +720,7 @@ afr_unlock_entrylk_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                          local->loc.path, child_index, strerror (op_errno));          } -        afr_unlock_common_cbk (frame, cookie, this, op_ret, op_errno); +        afr_unlock_common_cbk (frame, cookie, this, op_ret, op_errno, NULL);          return 0;  } @@ -767,7 +767,7 @@ afr_unlock_entrylk (call_frame_t *frame, xlator_t *this)                                             priv->children[i]->fops->entrylk,                                             this->name,                                             loc, basename, -                                           ENTRYLK_UNLOCK, ENTRYLK_WRLCK); +                                           ENTRYLK_UNLOCK, ENTRYLK_WRLCK, NULL);                          if (!--call_count)                                  break; @@ -781,7 +781,7 @@ out:  static int32_t  afr_lock_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -              int32_t op_ret, int32_t op_errno) +              int32_t op_ret, int32_t op_errno, dict_t *xdata)  {          afr_internal_lock_t *int_lock = NULL;          afr_local_t         *local    = NULL; @@ -824,20 +824,20 @@ afr_lock_cbk (call_frame_t *frame, void *cookie, xlator_t *this,  static int32_t  afr_blocking_inodelk_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                          int32_t op_ret, int32_t op_errno) +                          int32_t op_ret, int32_t op_errno, dict_t *xdata)  {          AFR_TRACE_INODELK_OUT (frame, this, AFR_INODELK_TRANSACTION,                                 AFR_LOCK_OP, NULL, op_ret,                                 op_errno, (long) cookie); -        afr_lock_cbk (frame, cookie, this, op_ret, op_errno); +        afr_lock_cbk (frame, cookie, this, op_ret, op_errno, xdata);          return 0;  }  static int32_t  afr_lock_lower_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                    int32_t op_ret, int32_t op_errno) +                    int32_t op_ret, int32_t op_errno, dict_t *xdata)  {          afr_internal_lock_t *int_lock    = NULL;          afr_private_t       *priv        = NULL; @@ -901,7 +901,7 @@ afr_lock_lower_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                             priv->children[child_index],                             priv->children[child_index]->fops->entrylk,                             this->name, higher, higher_name, -                           ENTRYLK_LOCK, ENTRYLK_WRLCK); +                           ENTRYLK_LOCK, ENTRYLK_WRLCK, NULL);  out:          return 0; @@ -909,13 +909,13 @@ out:  static int32_t  afr_blocking_entrylk_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                          int32_t op_ret, int32_t op_errno) +                          int32_t op_ret, int32_t op_errno, dict_t *xdata)  {          AFR_TRACE_ENTRYLK_OUT (frame, this, AFR_ENTRYLK_TRANSACTION,                                 AFR_LOCK_OP, NULL, op_ret,                                 op_errno, (long)cookie); -        afr_lock_cbk (frame, cookie, this, op_ret, op_errno); +        afr_lock_cbk (frame, cookie, this, op_ret, op_errno, xdata);          return 0;  } @@ -1052,7 +1052,7 @@ afr_lock_blocking (call_frame_t *frame, xlator_t *this, int child_index)                                             priv->children[child_index],                                             priv->children[child_index]->fops->finodelk,                                             this->name, local->fd, -                                           F_SETLKW, &flock); +                                           F_SETLKW, &flock, NULL);                  } else {                          AFR_TRACE_INODELK_IN (frame, this, @@ -1065,7 +1065,7 @@ afr_lock_blocking (call_frame_t *frame, xlator_t *this, int child_index)                                             priv->children[child_index],                                             priv->children[child_index]->fops->inodelk,                                             this->name, &local->loc, -                                           F_SETLKW, &flock); +                                           F_SETLKW, &flock, NULL);                  }                  break; @@ -1090,7 +1090,7 @@ afr_lock_blocking (call_frame_t *frame, xlator_t *this, int child_index)                                     priv->children[child_index],                                     priv->children[child_index]->fops->entrylk,                                     this->name, lower, lower_name, -                                   ENTRYLK_LOCK, ENTRYLK_WRLCK); +                                   ENTRYLK_LOCK, ENTRYLK_WRLCK, NULL);                  break;          } @@ -1108,7 +1108,7 @@ afr_lock_blocking (call_frame_t *frame, xlator_t *this, int child_index)                                             priv->children[child_index]->fops->fentrylk,                                             this->name, local->fd,                                             local->transaction.basename, -                                           ENTRYLK_LOCK, ENTRYLK_WRLCK); +                                           ENTRYLK_LOCK, ENTRYLK_WRLCK, NULL);                  } else {                          AFR_TRACE_ENTRYLK_IN (frame, this,                                                AFR_ENTRYLK_TRANSACTION, @@ -1122,7 +1122,7 @@ afr_lock_blocking (call_frame_t *frame, xlator_t *this, int child_index)                                             this->name,                                             &local->transaction.parent_loc,                                             local->transaction.basename, -                                           ENTRYLK_LOCK, ENTRYLK_WRLCK); +                                           ENTRYLK_LOCK, ENTRYLK_WRLCK, NULL);                  }                  break; @@ -1166,7 +1166,7 @@ afr_blocking_lock (call_frame_t *frame, xlator_t *this)  static int32_t  afr_nonblocking_entrylk_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                             int32_t op_ret, int32_t op_errno) +                             int32_t op_ret, int32_t op_errno, dict_t *xdata)  {          afr_internal_lock_t *int_lock = NULL;          afr_local_t         *local    = NULL; @@ -1305,7 +1305,8 @@ afr_nonblocking_entrylk (call_frame_t *frame, xlator_t *this)                                                     priv->children[i]->fops->fentrylk,                                                     this->name, local->fd,                                                     basename, -                                                   ENTRYLK_LOCK_NB, ENTRYLK_WRLCK); +                                                   ENTRYLK_LOCK_NB, ENTRYLK_WRLCK, +                                                   NULL);                          }                  }          } else { @@ -1326,7 +1327,8 @@ afr_nonblocking_entrylk (call_frame_t *frame, xlator_t *this)                                                     priv->children[i],                                                     priv->children[i]->fops->entrylk,                                                     this->name, loc, basename, -                                                   ENTRYLK_LOCK_NB, ENTRYLK_WRLCK); +                                                   ENTRYLK_LOCK_NB, ENTRYLK_WRLCK, +                                                   NULL);                                  if (!--call_count)                                          break; @@ -1340,7 +1342,7 @@ out:  int32_t  afr_nonblocking_inodelk_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                             int32_t op_ret, int32_t op_errno) +                             int32_t op_ret, int32_t op_errno, dict_t *xdata)  {          afr_internal_lock_t *int_lock = NULL;          afr_local_t         *local    = NULL; @@ -1509,7 +1511,7 @@ afr_nonblocking_inodelk (call_frame_t *frame, xlator_t *this)                          if (piggyback) {                                  /* (op_ret == 1) => indicate piggybacked lock */                                  afr_nonblocking_inodelk_cbk (frame, (void *) (long) i, -                                                             this, 1, 0); +                                                             this, 1, 0, NULL);                                  if (!--call_count)                                          break;                                  continue; @@ -1529,7 +1531,7 @@ afr_nonblocking_inodelk (call_frame_t *frame, xlator_t *this)                                             priv->children[i],                                             priv->children[i]->fops->finodelk,                                             this->name, local->fd, -                                           F_SETLK, flock_use); +                                           F_SETLK, flock_use, NULL);                          if (!--call_count)                                  break; @@ -1551,7 +1553,7 @@ afr_nonblocking_inodelk (call_frame_t *frame, xlator_t *this)                                             priv->children[i],                                             priv->children[i]->fops->inodelk,                                             this->name, &local->loc, -                                           F_SETLK, &flock); +                                           F_SETLK, &flock, NULL);                          if (!--call_count)                                  break; @@ -1646,7 +1648,7 @@ afr_unlock_lower_entrylk (call_frame_t *frame, xlator_t *this)                                             priv->children[i]->fops->entrylk,                                             this->name,                                             loc, basename, -                                           ENTRYLK_UNLOCK, ENTRYLK_WRLCK); +                                           ENTRYLK_UNLOCK, ENTRYLK_WRLCK, NULL);                          if (!--call_count)                                  break; @@ -1939,10 +1941,12 @@ out:  int32_t  afr_get_locks_fd_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                      int32_t op_ret, int32_t op_errno, struct gf_flock *lock); +                      int32_t op_ret, int32_t op_errno, struct gf_flock *lock, +                      dict_t *xdata);  int32_t  afr_recover_lock_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                      int32_t op_ret, int32_t op_errno, struct gf_flock *lock) +                      int32_t op_ret, int32_t op_errno, struct gf_flock *lock, +                      dict_t *xdata)  {          afr_local_t   *local = NULL;          afr_private_t *priv  = NULL; @@ -1966,7 +1970,7 @@ afr_recover_lock_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                             (void *) (long) source_child,                             priv->children[source_child],                             priv->children[source_child]->fops->lk, -                           local->fd, F_GETLK_FD, &flock); +                           local->fd, F_GETLK_FD, &flock, NULL);          return 0; @@ -1994,7 +1998,7 @@ afr_recover_lock (call_frame_t *frame, xlator_t *this,                             (void *) (long) lock_recovery_child,                             priv->children[lock_recovery_child],                             priv->children[lock_recovery_child]->fops->lk, -                           local->fd, F_SETLK, flock); +                           local->fd, F_SETLK, flock, NULL);          return 0;  } @@ -2012,7 +2016,8 @@ is_afr_lock_eol (struct gf_flock *lock)  int32_t  afr_get_locks_fd_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                      int32_t op_ret, int32_t op_errno, struct gf_flock *lock) +                      int32_t op_ret, int32_t op_errno, struct gf_flock *lock, +                      dict_t *xdata)  {          if (op_ret) {                  gf_log (this->name, GF_LOG_INFO, @@ -2072,7 +2077,7 @@ afr_lock_recovery (call_frame_t *frame, xlator_t *this)                             (void *) (long) source_child,                             priv->children[source_child],                             priv->children[source_child]->fops->lk, -                           local->fd, F_GETLK_FD, &flock); +                           local->fd, F_GETLK_FD, &flock, NULL);  out:          return ret; @@ -2100,7 +2105,8 @@ out:  int32_t  afr_lock_recovery_preopen_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                               int32_t op_ret, int32_t op_errno, fd_t *fd) +                               int32_t op_ret, int32_t op_errno, fd_t *fd, +                               dict_t *xdata)  {          int32_t child_index = (long )cookie;          int ret = 0; @@ -2172,8 +2178,7 @@ afr_lock_recovery_preopen (call_frame_t *frame, xlator_t *this)                             (void *)(long) child_index,                             priv->children[child_index],                             priv->children[child_index]->fops->open, -                           &loc, fdctx->flags, local->fd, -                           fdctx->wbflags); +                           &loc, fdctx->flags, local->fd, NULL);          return 0;  } diff --git a/xlators/cluster/afr/src/afr-open.c b/xlators/cluster/afr/src/afr-open.c index a203a36f920..370d50e7e2a 100644 --- a/xlators/cluster/afr/src/afr-open.c +++ b/xlators/cluster/afr/src/afr-open.c @@ -123,7 +123,7 @@ out:  int  afr_open_ftruncate_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                          int32_t op_ret, int32_t op_errno, struct iatt *prebuf, -                        struct iatt *postbuf) +                        struct iatt *postbuf, dict_t *xdata)  {          afr_local_t * local = frame->local;          afr_private_t *priv = NULL; @@ -132,7 +132,7 @@ afr_open_ftruncate_cbk (call_frame_t *frame, void *cookie, xlator_t *this,          if (afr_open_only_data_self_heal (priv->data_self_heal))                  afr_perform_data_self_heal (frame, this);          AFR_STACK_UNWIND (open, frame, local->op_ret, local->op_errno, -                          local->fd); +                          local->fd, xdata);          return 0;  } @@ -140,7 +140,7 @@ afr_open_ftruncate_cbk (call_frame_t *frame, void *cookie, xlator_t *this,  int  afr_open_cbk (call_frame_t *frame, void *cookie,                xlator_t *this, int32_t op_ret, int32_t op_errno, -              fd_t *fd) +              fd_t *fd, dict_t *xdata)  {          afr_local_t *  local       = NULL;          int            ret         = 0; @@ -162,8 +162,7 @@ afr_open_cbk (call_frame_t *frame, void *cookie,                          local->success_count++;                          ret = afr_child_fd_ctx_set (this, fd, child_index, -                                                    local->cont.open.flags, -                                                    local->cont.open.wbflags); +                                                    local->cont.open.flags);                          if (ret) {                                  local->op_ret = -1;                                  local->op_errno = -ret; @@ -181,12 +180,12 @@ unlock:                      && (local->op_ret >= 0)) {                          STACK_WIND (frame, afr_open_ftruncate_cbk,                                      this, this->fops->ftruncate, -                                    fd, 0); +                                    fd, 0, NULL);                  } else {                          if (afr_open_only_data_self_heal (priv->data_self_heal))                                  afr_perform_data_self_heal (frame, this);                          AFR_STACK_UNWIND (open, frame, local->op_ret, -                                          local->op_errno, local->fd); +                                          local->op_errno, local->fd, xdata);                  }          } @@ -195,7 +194,7 @@ unlock:  int  afr_open (call_frame_t *frame, xlator_t *this, loc_t *loc, int32_t flags, -          fd_t *fd, int32_t wbflags) +          fd_t *fd, dict_t *xdata)  {          afr_private_t * priv       = NULL;          afr_local_t *   local      = NULL; @@ -236,7 +235,6 @@ afr_open (call_frame_t *frame, xlator_t *this, loc_t *loc, int32_t flags,          loc_copy (&local->loc, loc);          local->cont.open.flags   = flags; -        local->cont.open.wbflags = wbflags;          local->fd = fd_ref (fd); @@ -245,7 +243,7 @@ afr_open (call_frame_t *frame, xlator_t *this, loc_t *loc, int32_t flags,                          STACK_WIND_COOKIE (frame, afr_open_cbk, (void *) (long) i,                                             priv->children[i],                                             priv->children[i]->fops->open, -                                           loc, wind_flags, fd, wbflags); +                                           loc, wind_flags, fd, xdata);                          if (!--call_count)                                  break; @@ -255,7 +253,7 @@ afr_open (call_frame_t *frame, xlator_t *this, loc_t *loc, int32_t flags,          ret = 0;  out:          if (ret < 0) -                AFR_STACK_UNWIND (open, frame, -1, op_errno, fd); +                AFR_STACK_UNWIND (open, frame, -1, op_errno, fd, xdata);          return 0;  } @@ -308,7 +306,7 @@ afr_resume_calls (xlator_t *this, struct list_head *list)  int  afr_openfd_fix_open_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                        int32_t op_ret, int32_t op_errno, fd_t *fd) +                         int32_t op_ret, int32_t op_errno, fd_t *fd, dict_t *xdata)  {          afr_local_t           *local       = NULL;          afr_private_t         *priv        = NULL; @@ -429,7 +427,8 @@ afr_fix_open (call_frame_t *frame, xlator_t *this, afr_fd_ctx_t *fd_ctx,                                             (void*) (long) i,                                             priv->children[i],                                             priv->children[i]->fops->opendir, -                                           &open_local->loc, open_local->fd); +                                           &open_local->loc, open_local->fd, +                                           NULL);                  } else {                          gf_log (this->name, GF_LOG_DEBUG,                                  "opening fd for file %s on subvolume %s", @@ -440,7 +439,7 @@ afr_fix_open (call_frame_t *frame, xlator_t *this, afr_fd_ctx_t *fd_ctx,                                             priv->children[i],                                             priv->children[i]->fops->open,                                             &open_local->loc, fd_ctx->flags, -                                           open_local->fd, fd_ctx->wbflags); +                                           open_local->fd, NULL);                  }          } diff --git a/xlators/cluster/afr/src/afr-self-heal-algorithm.c b/xlators/cluster/afr/src/afr-self-heal-algorithm.c index 629822a8e60..bf787339b1a 100644 --- a/xlators/cluster/afr/src/afr-self-heal-algorithm.c +++ b/xlators/cluster/afr/src/afr-self-heal-algorithm.c @@ -410,7 +410,7 @@ sh_loop_return (call_frame_t *sh_frame, xlator_t *this, call_frame_t *loop_frame  static int  sh_loop_write_cbk (call_frame_t *loop_frame, void *cookie, xlator_t *this,                     int32_t op_ret, int32_t op_errno, struct iatt *buf, -                   struct iatt *postbuf) +                   struct iatt *postbuf, dict_t *xdata)  {          afr_private_t *             priv        = NULL;          afr_local_t *               loop_local    = NULL; @@ -461,7 +461,7 @@ static int  sh_loop_read_cbk (call_frame_t *loop_frame, void *cookie,                    xlator_t *this, int32_t op_ret, int32_t op_errno,                    struct iovec *vector, int32_t count, struct iatt *buf, -                  struct iobref *iobref) +                  struct iobref *iobref, dict_t *xdata)  {          afr_private_t *               priv       = NULL;          afr_local_t *                 loop_local   = NULL; @@ -519,7 +519,7 @@ sh_loop_read_cbk (call_frame_t *loop_frame, void *cookie,                                     priv->children[i],                                     priv->children[i]->fops->writev,                                     loop_sh->healing_fd, vector, count, -                                   loop_sh->offset, 0, iobref); +                                   loop_sh->offset, 0, iobref, NULL);                  if (!--call_count)                          break; @@ -546,7 +546,7 @@ sh_loop_read (call_frame_t *loop_frame, xlator_t *this)                             priv->children[loop_sh->source],                             priv->children[loop_sh->source]->fops->readv,                             loop_sh->healing_fd, loop_sh->block_size, -                           loop_sh->offset, 0); +                           loop_sh->offset, 0, NULL);          return 0;  } @@ -555,7 +555,8 @@ sh_loop_read (call_frame_t *loop_frame, xlator_t *this)  static int  sh_diff_checksum_cbk (call_frame_t *loop_frame, void *cookie, xlator_t *this,                        int32_t op_ret, int32_t op_errno, -                      uint32_t weak_checksum, uint8_t *strong_checksum) +                      uint32_t weak_checksum, uint8_t *strong_checksum, +                      dict_t *xdata)  {          afr_private_t                 *priv         = NULL;          afr_local_t                   *loop_local   = NULL; @@ -658,7 +659,7 @@ sh_diff_checksum (call_frame_t *loop_frame, xlator_t *this)                             priv->children[loop_sh->source],                             priv->children[loop_sh->source]->fops->rchecksum,                             loop_sh->healing_fd, -                           loop_sh->offset, loop_sh->block_size); +                           loop_sh->offset, loop_sh->block_size, NULL);          for (i = 0; i < priv->child_count; i++) {                  if (loop_sh->sources[i] || !loop_local->child_up[i]) @@ -669,7 +670,7 @@ sh_diff_checksum (call_frame_t *loop_frame, xlator_t *this)                                     priv->children[i],                                     priv->children[i]->fops->rchecksum,                                     loop_sh->healing_fd, -                                   loop_sh->offset, loop_sh->block_size); +                                   loop_sh->offset, loop_sh->block_size, NULL);                  if (!--call_count)                          break; diff --git a/xlators/cluster/afr/src/afr-self-heal-common.c b/xlators/cluster/afr/src/afr-self-heal-common.c index f9958e76802..441d5d116e2 100644 --- a/xlators/cluster/afr/src/afr-self-heal-common.c +++ b/xlators/cluster/afr/src/afr-self-heal-common.c @@ -1422,7 +1422,8 @@ afr_sh_purge_stale_entries_done (call_frame_t *frame, xlator_t *this)                                                afr_sh_missing_entries_lookup_done,                                                sh->sh_gfid_req,                                                AFR_LOOKUP_FAIL_CONFLICTS| -                                              AFR_LOOKUP_FAIL_MISSING_GFIDS); +                                              AFR_LOOKUP_FAIL_MISSING_GFIDS, +                                              NULL);                  } else {                          //No need to set gfid so goto missing entries lookup done                          //Behave as if you have done the lookup @@ -1711,7 +1712,8 @@ afr_sh_find_fresh_parents (call_frame_t *frame, xlator_t *this,          afr_get_fresh_children (sh->success_children, sh->sources,                                  sh->fresh_parent_dirs, priv->child_count);          afr_sh_common_lookup (frame, this, &local->loc, -                              afr_sh_children_lookup_done, NULL, 0); +                              afr_sh_children_lookup_done, NULL, 0, +                              NULL);          return;  out: @@ -1745,7 +1747,7 @@ afr_sh_common_reset (afr_self_heal_t *sh, unsigned int child_count)  int  afr_sh_common_lookup (call_frame_t *frame, xlator_t *this, loc_t *loc,                        afr_lookup_done_cbk_t lookup_done , uuid_t gfid, -                      int32_t flags) +                      int32_t flags, dict_t *xdata)  {          afr_local_t    *local = NULL;          int             i = 0; @@ -1827,7 +1829,8 @@ afr_sh_post_nb_entrylk_conflicting_sh_cbk (call_frame_t *frame, xlator_t *this)                          "Non blocking entrylks done. Proceeding to FOP");                  afr_sh_common_lookup (frame, this, &sh->parent_loc,                                        afr_sh_find_fresh_parents, -                                      NULL, AFR_LOOKUP_FAIL_CONFLICTS); +                                      NULL, AFR_LOOKUP_FAIL_CONFLICTS, +                                      NULL);          }          return 0; @@ -1854,7 +1857,8 @@ afr_sh_post_nb_entrylk_gfid_sh_cbk (call_frame_t *frame, xlator_t *this)                  afr_sh_common_lookup (frame, this, &local->loc,                                        afr_sh_missing_entries_lookup_done,                                        sh->sh_gfid_req, AFR_LOOKUP_FAIL_CONFLICTS| -                                      AFR_LOOKUP_FAIL_MISSING_GFIDS); +                                      AFR_LOOKUP_FAIL_MISSING_GFIDS, +                                      NULL);          }          return 0; diff --git a/xlators/cluster/afr/src/afr-self-heal-common.h b/xlators/cluster/afr/src/afr-self-heal-common.h index 24cac623226..2979966c569 100644 --- a/xlators/cluster/afr/src/afr-self-heal-common.h +++ b/xlators/cluster/afr/src/afr-self-heal-common.h @@ -90,7 +90,7 @@ afr_sh_common_lookup_resp_handler (call_frame_t *frame, void *cookie,  int  afr_sh_common_lookup (call_frame_t *frame, xlator_t *this, loc_t *loc,                        afr_lookup_done_cbk_t lookup_cbk, uuid_t uuid, -                      int32_t flags); +                      int32_t flags, dict_t *xdata);  int  afr_sh_entry_expunge_remove (call_frame_t *expunge_frame, xlator_t *this,                               int active_src, struct iatt *buf, @@ -118,7 +118,7 @@ afr_sh_mark_source_sinks (call_frame_t *frame, xlator_t *this);  typedef int  (*afr_fxattrop_cbk_t) (call_frame_t *frame, void *cookie,                         xlator_t *this, int32_t op_ret, int32_t op_errno, -                       dict_t *xattr); +                       dict_t *xattr, dict_t *xdata);  int  afr_build_child_loc (xlator_t *this, loc_t *child, loc_t *parent, char *name);  int diff --git a/xlators/cluster/afr/src/afr-self-heal-data.c b/xlators/cluster/afr/src/afr-self-heal-data.c index 765edd27715..1c687a4e4fa 100644 --- a/xlators/cluster/afr/src/afr-self-heal-data.c +++ b/xlators/cluster/afr/src/afr-self-heal-data.c @@ -69,7 +69,7 @@ afr_sh_data_fxattrop (call_frame_t *frame, xlator_t *this,  int  afr_post_sh_data_fxattrop_cbk (call_frame_t *frame, void *cookie,                                 xlator_t *this, int32_t op_ret, int32_t op_errno, -                               dict_t *xattr); +                               dict_t *xattr, dict_t *xdata);  int  afr_sh_data_done (call_frame_t *frame, xlator_t *this) @@ -88,7 +88,7 @@ afr_sh_data_done (call_frame_t *frame, xlator_t *this)  int  afr_sh_data_flush_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                       int32_t op_ret, int32_t op_errno) +                       int32_t op_ret, int32_t op_errno, dict_t *xdata)  {          afr_local_t   *local       = NULL;          afr_private_t *priv        = NULL; @@ -151,7 +151,7 @@ afr_sh_data_close (call_frame_t *frame, xlator_t *this)                                     (void *) (long) i,                                     priv->children[i],                                     priv->children[i]->fops->flush, -                                   sh->healing_fd); +                                   sh->healing_fd, NULL);                  if (!--call_count)                          break; @@ -163,7 +163,7 @@ afr_sh_data_close (call_frame_t *frame, xlator_t *this)  int  afr_sh_data_setattr_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                           int32_t op_ret, int32_t op_errno, struct iatt *statpre, -                         struct iatt *statpost) +                         struct iatt *statpost, dict_t *xdata)  {          afr_local_t   *local       = NULL; @@ -237,7 +237,7 @@ afr_sh_data_setattr (call_frame_t *frame, xlator_t *this)                                     (void *) (long) i,                                     priv->children[i],                                     priv->children[i]->fops->setattr, -                                   &local->loc, &stbuf, valid); +                                   &local->loc, &stbuf, valid, NULL);                  if (!--call_count)                          break; @@ -249,7 +249,7 @@ afr_sh_data_setattr (call_frame_t *frame, xlator_t *this)  int  afr_sh_data_setattr_fstat_cbk (call_frame_t *frame, void *cookie,                                 xlator_t *this, int32_t op_ret, int32_t op_errno, -                               struct iatt *buf) +                               struct iatt *buf, dict_t *xdata)  {          afr_local_t     *local = NULL;          afr_self_heal_t *sh = NULL; @@ -286,7 +286,7 @@ afr_sh_set_timestamps (call_frame_t *frame, xlator_t *this)                             (void *) (long) sh->source,                             priv->children[sh->source],                             priv->children[sh->source]->fops->fstat, -                           sh->healing_fd); +                           sh->healing_fd, NULL);          return 0;  } @@ -355,7 +355,7 @@ afr_sh_data_fail (call_frame_t *frame, xlator_t *this)  int  afr_sh_data_erase_pending_cbk (call_frame_t *frame, void *cookie,                                 xlator_t *this, int32_t op_ret, -                               int32_t op_errno, dict_t *xattr) +                               int32_t op_errno, dict_t *xattr, dict_t *xdata)  {          int             call_count = 0;          afr_local_t     *local = NULL; @@ -429,7 +429,8 @@ afr_sh_data_erase_pending (call_frame_t *frame, xlator_t *this)                                     priv->children[i],                                     priv->children[i]->fops->fxattrop,                                     sh->healing_fd, -                                   GF_XATTROP_ADD_ARRAY, erase_xattr[i]); +                                   GF_XATTROP_ADD_ARRAY, erase_xattr[i], +                                   NULL);                  if (!--call_count)                          break;          } @@ -547,7 +548,7 @@ afr_sh_data_sync_prepare (call_frame_t *frame, xlator_t *this)  int  afr_sh_data_trim_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                        int32_t op_ret, int32_t op_errno, struct iatt *prebuf, -                      struct iatt *postbuf) +                      struct iatt *postbuf, dict_t *xdata)  {          afr_private_t * priv = NULL;          afr_local_t * local  = NULL; @@ -612,7 +613,8 @@ afr_sh_data_trim_sinks (call_frame_t *frame, xlator_t *this)                                     (void *) (long) i,                                     priv->children[i],                                     priv->children[i]->fops->ftruncate, -                                   sh->healing_fd, sh->file_size); +                                   sh->healing_fd, sh->file_size, +                                   NULL);                  if (!--call_count)                          break; @@ -824,7 +826,7 @@ afr_sh_data_special_file_fix (call_frame_t *frame, xlator_t *this)  int  afr_sh_data_fstat_cbk (call_frame_t *frame, void *cookie,                         xlator_t *this, int32_t op_ret, int32_t op_errno, -                       struct iatt *buf) +                       struct iatt *buf, dict_t *xdata)  {          afr_private_t   *priv  = NULL;          afr_local_t     *local = NULL; @@ -894,7 +896,7 @@ afr_sh_data_fstat (call_frame_t *frame, xlator_t *this)                                             (void *) (long) i,                                             priv->children[i],                                             priv->children[i]->fops->fstat, -                                           sh->healing_fd); +                                           sh->healing_fd, NULL);                          if (!--call_count)                                  break; @@ -937,7 +939,7 @@ afr_sh_common_fxattrop_resp_handler (call_frame_t *frame, void *cookie,  int  afr_post_sh_data_fxattrop_cbk (call_frame_t *frame, void *cookie,                                 xlator_t *this, int32_t op_ret, int32_t op_errno, -                               dict_t *xattr) +                               dict_t *xattr, dict_t *xdata)  {          int             call_count  = -1;          int             ret = 0; @@ -968,7 +970,7 @@ afr_post_sh_data_fxattrop_cbk (call_frame_t *frame, void *cookie,  int  afr_sh_data_fxattrop_cbk (call_frame_t *frame, void *cookie,                            xlator_t *this, int32_t op_ret, int32_t op_errno, -                          dict_t *xattr) +                          dict_t *xattr, dict_t *xdata)  {          int call_count  = -1; @@ -1041,7 +1043,7 @@ afr_sh_data_fxattrop (call_frame_t *frame, xlator_t *this,                                             priv->children[i],                                             priv->children[i]->fops->fxattrop,                                             sh->healing_fd, GF_XATTROP_ADD_ARRAY, -                                           xattr_req); +                                           xattr_req, NULL);                          if (!--call_count)                                  break; @@ -1211,7 +1213,7 @@ afr_sh_data_lock (call_frame_t *frame, xlator_t *this,  int  afr_sh_data_open_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                      int32_t op_ret, int32_t op_errno, fd_t *fd) +                      int32_t op_ret, int32_t op_errno, fd_t *fd, dict_t *xdata)  {          afr_local_t     *local = NULL;          afr_self_heal_t *sh = NULL; @@ -1298,7 +1300,7 @@ afr_sh_data_open (call_frame_t *frame, xlator_t *this)                                     priv->children[i],                                     priv->children[i]->fops->open,                                     &local->loc, -                                   O_RDWR|O_LARGEFILE, fd, 0); +                                   O_RDWR|O_LARGEFILE, fd, NULL);                  if (!--call_count)                          break; diff --git a/xlators/cluster/afr/src/afr-self-heal-entry.c b/xlators/cluster/afr/src/afr-self-heal-entry.c index 3aefd3b371e..766474682be 100644 --- a/xlators/cluster/afr/src/afr-self-heal-entry.c +++ b/xlators/cluster/afr/src/afr-self-heal-entry.c @@ -111,7 +111,7 @@ afr_sh_entry_finish (call_frame_t *frame, xlator_t *this)  int  afr_sh_entry_erase_pending_cbk (call_frame_t *frame, void *cookie,                                  xlator_t *this, int32_t op_ret, -                                int32_t op_errno, dict_t *xattr) +                                int32_t op_errno, dict_t *xattr, dict_t *xdata)  {          long                 i          = 0;          int                  call_count = 0; @@ -216,7 +216,8 @@ afr_sh_entry_erase_pending (call_frame_t *frame, xlator_t *this)                                     priv->children[i],                                     priv->children[i]->fops->xattrop,                                     &local->loc, -                                   GF_XATTROP_ADD_ARRAY, erase_xattr[i]); +                                   GF_XATTROP_ADD_ARRAY, erase_xattr[i], +                                   NULL);                  if (!--call_count)                          break;          } @@ -344,7 +345,8 @@ int  afr_sh_entry_expunge_parent_setattr_cbk (call_frame_t *expunge_frame,                                           void *cookie, xlator_t *this,                                           int32_t op_ret, int32_t op_errno, -                                         struct iatt *preop, struct iatt *postop) +                                         struct iatt *preop, struct iatt *postop, +                                         dict_t *xdata)  {          afr_private_t   *priv          = NULL;          afr_local_t     *expunge_local = NULL; @@ -380,7 +382,7 @@ afr_sh_entry_expunge_remove_cbk (call_frame_t *expunge_frame, void *cookie,                                   xlator_t *this,                                   int32_t op_ret, int32_t op_errno,                                   struct iatt *preparent, -                                 struct iatt *postparent) +                                 struct iatt *postparent, dict_t *xdata)  {          afr_private_t   *priv = NULL;          afr_local_t     *expunge_local = NULL; @@ -415,7 +417,7 @@ afr_sh_entry_expunge_remove_cbk (call_frame_t *expunge_frame, void *cookie,                             priv->children[active_src]->fops->setattr,                             &expunge_sh->parent_loc,                             &expunge_sh->parentbuf, -                           valid); +                           valid, NULL);          return 0;  } @@ -439,7 +441,7 @@ afr_sh_entry_expunge_unlink (call_frame_t *expunge_frame, xlator_t *this,                             (void *) (long) active_src,                             priv->children[active_src],                             priv->children[active_src]->fops->unlink, -                           &expunge_local->loc); +                           &expunge_local->loc, 0, NULL);          return 0;  } @@ -464,7 +466,7 @@ afr_sh_entry_expunge_rmdir (call_frame_t *expunge_frame, xlator_t *this,                             (void *) (long) active_src,                             priv->children[active_src],                             priv->children[active_src]->fops->rmdir, -                           &expunge_local->loc, 1); +                           &expunge_local->loc, 1, NULL);          return 0;  } @@ -588,7 +590,7 @@ afr_sh_entry_expunge_purge (call_frame_t *expunge_frame, xlator_t *this,                             (void *) (long) active_src,                             priv->children[active_src],                             priv->children[active_src]->fops->lookup, -                           &expunge_local->loc, 0); +                           &expunge_local->loc, NULL);          return 0;  } @@ -747,7 +749,7 @@ afr_sh_entry_expunge_entry (call_frame_t *frame, xlator_t *this,                             (void *) (long) source,                             priv->children[source],                             priv->children[source]->fops->lookup, -                           &expunge_local->loc, 0); +                           &expunge_local->loc, NULL);          ret = 0;  out: @@ -762,7 +764,7 @@ int  afr_sh_entry_expunge_readdir_cbk (call_frame_t *frame, void *cookie,                                    xlator_t *this,                                    int32_t op_ret, int32_t op_errno, -                                  gf_dirent_t *entries) +                                  gf_dirent_t *entries, dict_t *xdata)  {          afr_private_t   *priv = NULL;          afr_local_t     *local  = NULL; @@ -923,7 +925,8 @@ int  afr_sh_entry_impunge_setattr_cbk (call_frame_t *impunge_frame, void *cookie,                                    xlator_t *this,                                    int32_t op_ret, int32_t op_errno, -                                  struct iatt *preop, struct iatt *postop) +                                  struct iatt *preop, struct iatt *postop, +                                  dict_t *xdata)  {          int              call_count = 0;          afr_private_t   *priv = NULL; @@ -960,7 +963,8 @@ int  afr_sh_entry_impunge_parent_setattr_cbk (call_frame_t *setattr_frame,                                           void *cookie, xlator_t *this,                                           int32_t op_ret, int32_t op_errno, -                                         struct iatt *preop, struct iatt *postop) +                                         struct iatt *preop, struct iatt *postop, +                                         dict_t *xdata)  {          int             call_count = 0;          afr_local_t     *setattr_local = NULL; @@ -1024,7 +1028,7 @@ afr_sh_entry_impunge_setattr (call_frame_t *impunge_frame, xlator_t *this)                                     (void *) (long) i, priv->children[i],                                     priv->children[i]->fops->setattr,                                     &setattr_local->loc, -                                   &impunge_sh->parentbuf, valid); +                                   &impunge_sh->parentbuf, valid, NULL);                  valid = GF_SET_ATTR_UID   | GF_SET_ATTR_GID |                          GF_SET_ATTR_ATIME | GF_SET_ATTR_MTIME; @@ -1033,7 +1037,7 @@ afr_sh_entry_impunge_setattr (call_frame_t *impunge_frame, xlator_t *this)                                     (void *) (long) i, priv->children[i],                                     priv->children[i]->fops->setattr,                                     &impunge_local->loc, -                                   &impunge_sh->entrybuf, valid); +                                   &impunge_sh->entrybuf, valid, NULL);                  call_count--;          }          GF_ASSERT (!call_count); @@ -1049,7 +1053,7 @@ int  afr_sh_entry_impunge_xattrop_cbk (call_frame_t *impunge_frame, void *cookie,                                    xlator_t *this,                                    int32_t op_ret, int32_t op_errno, -                                  dict_t *xattr) +                                  dict_t *xattr, dict_t *xdata)  {          afr_private_t   *priv = NULL;          afr_local_t     *impunge_local = NULL; @@ -1136,7 +1140,7 @@ afr_sh_entry_impunge_perform_xattrop (call_frame_t *impunge_frame,                             (void *) (long) active_src,                             priv->children[active_src],                             priv->children[active_src]->fops->xattrop, -                           &impunge_local->loc, GF_XATTROP_ADD_ARRAY, xattr); +                           &impunge_local->loc, GF_XATTROP_ADD_ARRAY, xattr, NULL);          if (xattr)                  dict_unref (xattr); @@ -1153,7 +1157,7 @@ afr_sh_entry_impunge_newfile_cbk (call_frame_t *impunge_frame, void *cookie,                                    int32_t op_ret, int32_t op_errno,                                    inode_t *inode, struct iatt *stbuf,                                    struct iatt *preparent, -                                  struct iatt *postparent) +                                  struct iatt *postparent, dict_t *xdata)  {          int              call_count       = 0;          afr_private_t   *priv             = NULL; @@ -1198,7 +1202,7 @@ afr_sh_entry_impunge_hardlink_cbk (call_frame_t *impunge_frame, void *cookie,                                     xlator_t *this, int32_t op_ret,                                     int32_t op_errno, inode_t *inode,                                     struct iatt *buf, struct iatt *preparent, -                                   struct iatt *postparent) +                                   struct iatt *postparent, dict_t *xdata)  {          int              call_count        = 0;          call_frame_t    *frame             = NULL; @@ -1243,7 +1247,7 @@ afr_sh_entry_impunge_hardlink (call_frame_t *impunge_frame, xlator_t *this,                             (void *) (long) child_index,                             priv->children[child_index],                             priv->children[child_index]->fops->link, -                           &oldloc, loc); +                           &oldloc, loc, NULL);          loc_wipe (&oldloc);          return 0; @@ -1342,7 +1346,7 @@ afr_sh_entry_impunge_mknod (call_frame_t *impunge_frame, xlator_t *this,                             &impunge_local->loc,                             st_mode_from_ia (stbuf->ia_prot, stbuf->ia_type),                             makedev (ia_major (stbuf->ia_rdev), -                                    ia_minor (stbuf->ia_rdev)), dict); +                                    ia_minor (stbuf->ia_rdev)), 0, dict);          if (dict)                  dict_unref (dict); @@ -1389,7 +1393,7 @@ afr_sh_entry_impunge_mkdir (call_frame_t *impunge_frame, xlator_t *this,                             priv->children[child_index]->fops->mkdir,                             &impunge_local->loc,                             st_mode_from_ia (stbuf->ia_prot, stbuf->ia_type), -                           dict); +                           0, dict);          if (dict)                  dict_unref (dict); @@ -1436,7 +1440,7 @@ afr_sh_entry_impunge_symlink (call_frame_t *impunge_frame, xlator_t *this,                             (void *) (long) child_index,                             priv->children[child_index],                             priv->children[child_index]->fops->symlink, -                           linkname, &impunge_local->loc, dict); +                           linkname, &impunge_local->loc, 0, dict);          if (dict)                  dict_unref (dict); @@ -1450,7 +1454,7 @@ afr_sh_entry_impunge_symlink_unlink_cbk (call_frame_t *impunge_frame,                                           void *cookie, xlator_t *this,                                           int32_t op_ret, int32_t op_errno,                                           struct iatt *preparent, -                                         struct iatt *postparent) +                                         struct iatt *postparent, dict_t *xdata)  {          afr_private_t   *priv = NULL;          afr_local_t     *impunge_local = NULL; @@ -1511,7 +1515,7 @@ afr_sh_entry_impunge_symlink_unlink (call_frame_t *impunge_frame, xlator_t *this                             (void *) (long) child_index,                             priv->children[child_index],                             priv->children[child_index]->fops->unlink, -                           &impunge_local->loc); +                           &impunge_local->loc, 0, NULL);          return 0;  } @@ -1521,7 +1525,7 @@ int  afr_sh_entry_impunge_readlink_sink_cbk (call_frame_t *impunge_frame, void *cookie,                                          xlator_t *this,                                          int32_t op_ret, int32_t op_errno, -                                        const char *linkname, struct iatt *sbuf) +                                        const char *linkname, struct iatt *sbuf, dict_t *xdata)  {          afr_private_t   *priv = NULL;          afr_local_t     *impunge_local = NULL; @@ -1603,7 +1607,7 @@ afr_sh_entry_impunge_readlink_sink (call_frame_t *impunge_frame, xlator_t *this,                             (void *) (long) child_index,                             priv->children[child_index],                             priv->children[child_index]->fops->readlink, -                           &impunge_local->loc, 4096); +                           &impunge_local->loc, 4096, NULL);          return 0;  } @@ -1613,7 +1617,7 @@ int  afr_sh_entry_impunge_readlink_cbk (call_frame_t *impunge_frame, void *cookie,                                     xlator_t *this,                                     int32_t op_ret, int32_t op_errno, -                                   const char *linkname, struct iatt *sbuf) +                                   const char *linkname, struct iatt *sbuf, dict_t *xdata)  {          afr_private_t   *priv = NULL;          afr_local_t     *impunge_local = NULL; @@ -1677,7 +1681,7 @@ afr_sh_entry_impunge_readlink (call_frame_t *impunge_frame, xlator_t *this,                             (void *) (long) child_index,                             priv->children[active_src],                             priv->children[active_src]->fops->readlink, -                           &impunge_local->loc, 4096); +                           &impunge_local->loc, 4096, NULL);          return 0;  } @@ -1919,7 +1923,8 @@ afr_sh_entry_common_lookup_done (call_frame_t *impunge_frame, xlator_t *this,                  afr_sh_common_lookup (impunge_frame, this, &impunge_local->loc,                                        afr_sh_entry_common_lookup_done, gfid,                                        AFR_LOOKUP_FAIL_CONFLICTS | -                                      AFR_LOOKUP_FAIL_MISSING_GFIDS); +                                      AFR_LOOKUP_FAIL_MISSING_GFIDS, +                                      NULL);          } else {                  afr_sh_entry_call_impunge_recreate (impunge_frame, this);          } @@ -1985,7 +1990,7 @@ afr_sh_entry_impunge_entry (call_frame_t *frame, xlator_t *this,          afr_sh_common_lookup (impunge_frame, this, &impunge_local->loc,                                afr_sh_entry_common_lookup_done, NULL, -                              AFR_LOOKUP_FAIL_CONFLICTS); +                              AFR_LOOKUP_FAIL_CONFLICTS, NULL);          op_ret = 0;  out: @@ -2003,7 +2008,7 @@ int  afr_sh_entry_impunge_readdir_cbk (call_frame_t *frame, void *cookie,                                    xlator_t *this,                                    int32_t op_ret, int32_t op_errno, -                                  gf_dirent_t *entries) +                                  gf_dirent_t *entries, dict_t *xdata)  {          afr_private_t   *priv = NULL;          afr_local_t     *local  = NULL; @@ -2076,7 +2081,7 @@ afr_sh_entry_impunge_subvol (call_frame_t *frame, xlator_t *this)          STACK_WIND (frame, afr_sh_entry_impunge_readdir_cbk,                      priv->children[active_src],                      priv->children[active_src]->fops->readdirp, -                    sh->healing_fd, sh->block_size, sh->offset, 0); +                    sh->healing_fd, sh->block_size, sh->offset, NULL);          return 0;  } @@ -2122,7 +2127,7 @@ afr_sh_entry_impunge_all (call_frame_t *frame, xlator_t *this)  int  afr_sh_entry_opendir_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                          int32_t op_ret, int32_t op_errno, fd_t *fd) +                          int32_t op_ret, int32_t op_errno, fd_t *fd, dict_t *xdata)  {          afr_local_t     *local = NULL;          afr_self_heal_t *sh = NULL; @@ -2216,7 +2221,7 @@ afr_sh_entry_open (call_frame_t *frame, xlator_t *this)                                     (void *) (long) source,                                     priv->children[source],                                     priv->children[source]->fops->opendir, -                                   &local->loc, fd); +                                   &local->loc, fd, NULL);                  call_count--;          } @@ -2233,7 +2238,7 @@ afr_sh_entry_open (call_frame_t *frame, xlator_t *this)                                     (void *) (long) i,                                     priv->children[i],                                     priv->children[i]->fops->opendir, -                                   &local->loc, fd); +                                   &local->loc, fd, NULL);                  if (!--call_count)                          break; @@ -2382,7 +2387,8 @@ afr_sh_post_nonblocking_entry_cbk (call_frame_t *frame, xlator_t *this)                  afr_sh_common_lookup (frame, this, &local->loc,                                        afr_sh_entry_fix, NULL,                                        AFR_LOOKUP_FAIL_CONFLICTS | -                                      AFR_LOOKUP_FAIL_MISSING_GFIDS); +                                      AFR_LOOKUP_FAIL_MISSING_GFIDS, +                                      NULL);          }          return 0; diff --git a/xlators/cluster/afr/src/afr-self-heal-metadata.c b/xlators/cluster/afr/src/afr-self-heal-metadata.c index d0bf382a47a..9cebd5c0718 100644 --- a/xlators/cluster/afr/src/afr-self-heal-metadata.c +++ b/xlators/cluster/afr/src/afr-self-heal-metadata.c @@ -109,7 +109,7 @@ afr_sh_metadata_finish (call_frame_t *frame, xlator_t *this)  int  afr_sh_metadata_erase_pending_cbk (call_frame_t *frame, void *cookie,                                     xlator_t *this, int32_t op_ret, -                                   int32_t op_errno, dict_t *xattr) +                                   int32_t op_errno, dict_t *xattr, dict_t *xdata)  {          afr_local_t     *local     = NULL;          int             call_count = 0; @@ -201,7 +201,8 @@ afr_sh_metadata_erase_pending (call_frame_t *frame, xlator_t *this)                                     priv->children[i],                                     priv->children[i]->fops->xattrop,                                     &local->loc, -                                   GF_XATTROP_ADD_ARRAY, erase_xattr[i]); +                                   GF_XATTROP_ADD_ARRAY, erase_xattr[i], +                                   NULL);                  if (!--call_count)                          break;          } @@ -219,7 +220,7 @@ afr_sh_metadata_erase_pending (call_frame_t *frame, xlator_t *this)  int  afr_sh_metadata_sync_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                          int32_t op_ret, int32_t op_errno) +                          int32_t op_ret, int32_t op_errno, dict_t *xdata)  {          afr_local_t     *local = NULL;          afr_self_heal_t *sh = NULL; @@ -260,9 +261,9 @@ afr_sh_metadata_sync_cbk (call_frame_t *frame, void *cookie, xlator_t *this,  int  afr_sh_metadata_setattr_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                               int32_t op_ret, int32_t op_errno, -                             struct iatt *preop, struct iatt *postop) +                             struct iatt *preop, struct iatt *postop, dict_t *xdata)  { -        afr_sh_metadata_sync_cbk (frame, cookie, this, op_ret, op_errno); +        afr_sh_metadata_sync_cbk (frame, cookie, this, op_ret, op_errno, xdata);          return 0;  } @@ -270,9 +271,9 @@ afr_sh_metadata_setattr_cbk (call_frame_t *frame, void *cookie, xlator_t *this,  int  afr_sh_metadata_xattr_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                           int32_t op_ret, int32_t op_errno) +                           int32_t op_ret, int32_t op_errno, dict_t *xdata)  { -        afr_sh_metadata_sync_cbk (frame, cookie, this, op_ret, op_errno); +        afr_sh_metadata_sync_cbk (frame, cookie, this, op_ret, op_errno, xdata);          return 0;  } @@ -340,7 +341,7 @@ afr_sh_metadata_sync (call_frame_t *frame, xlator_t *this, dict_t *xattr)                                     (void *) (long) i,                                     priv->children[i],                                     priv->children[i]->fops->setattr, -                                   &local->loc, &stbuf, valid); +                                   &local->loc, &stbuf, valid, NULL);                  call_count--; @@ -351,7 +352,7 @@ afr_sh_metadata_sync (call_frame_t *frame, xlator_t *this, dict_t *xattr)                                     (void *) (long) i,                                     priv->children[i],                                     priv->children[i]->fops->setxattr, -                                   &local->loc, xattr, 0); +                                   &local->loc, xattr, 0, NULL);                  call_count--;          } @@ -360,9 +361,9 @@ afr_sh_metadata_sync (call_frame_t *frame, xlator_t *this, dict_t *xattr)  int -afr_sh_metadata_getxattr_cbk (call_frame_t *frame, void *cookie, -                              xlator_t *this, -                              int32_t op_ret, int32_t op_errno, dict_t *xattr) +afr_sh_metadata_getxattr_cbk (call_frame_t *frame, void *cookie, xlator_t *this, +                              int32_t op_ret, int32_t op_errno, dict_t *xattr, +                              dict_t *xdata)  {          afr_local_t     *local = NULL;          afr_self_heal_t *sh = NULL; @@ -427,7 +428,7 @@ afr_sh_metadata_sync_prepare (call_frame_t *frame, xlator_t *this)          STACK_WIND (frame, afr_sh_metadata_getxattr_cbk,                      priv->children[source],                      priv->children[source]->fops->getxattr, -                    &local->loc, NULL); +                    &local->loc, NULL, NULL);          return 0;  } @@ -556,7 +557,8 @@ afr_sh_metadata_post_nonblocking_inodelk_cbk (call_frame_t *frame,                  afr_sh_common_lookup (frame, this, &local->loc,                                        afr_sh_metadata_fix, NULL,                                        AFR_LOOKUP_FAIL_CONFLICTS | -                                      AFR_LOOKUP_FAIL_MISSING_GFIDS); +                                      AFR_LOOKUP_FAIL_MISSING_GFIDS, +                                      NULL);          }          return 0; diff --git a/xlators/cluster/afr/src/afr-transaction.c b/xlators/cluster/afr/src/afr-transaction.c index 584ad7aed23..7a95f310afe 100644 --- a/xlators/cluster/afr/src/afr-transaction.c +++ b/xlators/cluster/afr/src/afr-transaction.c @@ -360,7 +360,8 @@ afr_lock_server_count (afr_private_t *priv, afr_transaction_type type)  int32_t  afr_changelog_post_op_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                           int32_t op_ret, int32_t op_errno, dict_t *xattr) +                           int32_t op_ret, int32_t op_errno, dict_t *xattr, +                           dict_t *xdata)  {          afr_internal_lock_t *int_lock = NULL;          afr_private_t       *priv     = NULL; @@ -583,7 +584,8 @@ afr_changelog_post_op (call_frame_t *frame, xlator_t *this)                                              priv->children[i],                                              priv->children[i]->fops->xattrop,                                              &local->loc, -                                            GF_XATTROP_ADD_ARRAY, xattr[i]); +                                            GF_XATTROP_ADD_ARRAY, xattr[i], +                                            NULL);                                  break;                          } @@ -604,7 +606,7 @@ afr_changelog_post_op (call_frame_t *frame, xlator_t *this)                          if (nothing_failed && piggyback) {                                  afr_changelog_post_op_cbk (frame, (void *)(long)i, -                                                           this, 1, 0, xattr[i]); +                                                           this, 1, 0, xattr[i], NULL);                          } else {                                  __mark_pre_op_undone_on_fd (frame, this, i);                                  STACK_WIND_COOKIE (frame, @@ -613,7 +615,8 @@ afr_changelog_post_op (call_frame_t *frame, xlator_t *this)                                                     priv->children[i],                                                     priv->children[i]->fops->fxattrop,                                                     local->fd, -                                                   GF_XATTROP_ADD_ARRAY, xattr[i]); +                                                   GF_XATTROP_ADD_ARRAY, xattr[i], +                                                   NULL);                          }                  }                  break; @@ -621,7 +624,8 @@ afr_changelog_post_op (call_frame_t *frame, xlator_t *this)                  {                          if (nothing_failed) {                                  afr_changelog_post_op_cbk (frame, (void *)(long)i, -                                                           this, 1, 0, xattr[i]); +                                                           this, 1, 0, xattr[i], +                                                           NULL);                                  break;                          } @@ -630,13 +634,15 @@ afr_changelog_post_op (call_frame_t *frame, xlator_t *this)                                              priv->children[i],                                              priv->children[i]->fops->fxattrop,                                              local->fd, -                                            GF_XATTROP_ADD_ARRAY, xattr[i]); +                                            GF_XATTROP_ADD_ARRAY, xattr[i], +                                            NULL);                          else                                  STACK_WIND (frame, afr_changelog_post_op_cbk,                                              priv->children[i],                                              priv->children[i]->fops->xattrop,                                              &local->loc, -                                            GF_XATTROP_ADD_ARRAY, xattr[i]); +                                            GF_XATTROP_ADD_ARRAY, xattr[i], +                                            NULL);                  }                  break; @@ -644,14 +650,16 @@ afr_changelog_post_op (call_frame_t *frame, xlator_t *this)                  {                          if (nothing_failed) {                                  afr_changelog_post_op_cbk (frame, (void *)(long)i, -                                                           this, 1, 0, xattr[i]); +                                                           this, 1, 0, xattr[i], +                                                           NULL);                          } else {                                  STACK_WIND_COOKIE (frame, afr_changelog_post_op_cbk,                                                     (void *) (long) i,                                                     priv->children[i],                                                     priv->children[i]->fops->xattrop,                                                     &local->transaction.new_parent_loc, -                                                   GF_XATTROP_ADD_ARRAY, xattr[i]); +                                                   GF_XATTROP_ADD_ARRAY, xattr[i], +                                                   NULL);                          }                          call_count--;                  } @@ -676,7 +684,8 @@ afr_changelog_post_op (call_frame_t *frame, xlator_t *this)                  {                          if (nothing_failed) {                                  afr_changelog_post_op_cbk (frame, (void *)(long)i, -                                                           this, 1, 0, xattr[i]); +                                                           this, 1, 0, xattr[i], +                                                           NULL);                                  break;                          } @@ -685,13 +694,15 @@ afr_changelog_post_op (call_frame_t *frame, xlator_t *this)                                              priv->children[i],                                              priv->children[i]->fops->fxattrop,                                              local->fd, -                                            GF_XATTROP_ADD_ARRAY, xattr[i]); +                                            GF_XATTROP_ADD_ARRAY, xattr[i], +                                            NULL);                          else                                  STACK_WIND (frame, afr_changelog_post_op_cbk,                                              priv->children[i],                                              priv->children[i]->fops->xattrop,                                              &local->transaction.parent_loc, -                                            GF_XATTROP_ADD_ARRAY, xattr[i]); +                                            GF_XATTROP_ADD_ARRAY, xattr[i], +                                            NULL);                  }                  break;                  } @@ -711,7 +722,8 @@ out:  int32_t  afr_changelog_pre_op_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -                          int32_t op_ret, int32_t op_errno, dict_t *xattr) +                          int32_t op_ret, int32_t op_errno, dict_t *xattr, +                          dict_t *xdata)  {          afr_local_t *   local = NULL;          afr_private_t * priv  = this->private; @@ -831,7 +843,8 @@ afr_changelog_pre_op (call_frame_t *frame, xlator_t *this)                                                     priv->children[i],                                                     priv->children[i]->fops->xattrop,                                                     &(local->loc), -                                                   GF_XATTROP_ADD_ARRAY, xattr[i]); +                                                   GF_XATTROP_ADD_ARRAY, xattr[i], +                                                   NULL);                                  break;                          } @@ -850,7 +863,8 @@ afr_changelog_pre_op (call_frame_t *frame, xlator_t *this)                          if (piggyback)                                  afr_changelog_pre_op_cbk (frame, (void *)(long)i, -                                                          this, 1, 0, xattr[i]); +                                                          this, 1, 0, xattr[i], +                                                          NULL);                          else                                  STACK_WIND_COOKIE (frame,                                                     afr_changelog_pre_op_cbk, @@ -858,14 +872,16 @@ afr_changelog_pre_op (call_frame_t *frame, xlator_t *this)                                                     priv->children[i],                                                     priv->children[i]->fops->fxattrop,                                                     local->fd, -                                                   GF_XATTROP_ADD_ARRAY, xattr[i]); +                                                   GF_XATTROP_ADD_ARRAY, xattr[i], +                                                   NULL);                  }                  break;                  case AFR_METADATA_TRANSACTION:                  {                          if (local->optimistic_change_log) {                                  afr_changelog_pre_op_cbk (frame, (void *)(long)i, -                                                          this, 1, 0, xattr[i]); +                                                          this, 1, 0, xattr[i], +                                                          NULL);                                  break;                          } @@ -876,7 +892,8 @@ afr_changelog_pre_op (call_frame_t *frame, xlator_t *this)                                                     priv->children[i],                                                     priv->children[i]->fops->fxattrop,                                                     local->fd, -                                                   GF_XATTROP_ADD_ARRAY, xattr[i]); +                                                   GF_XATTROP_ADD_ARRAY, xattr[i], +                                                   NULL);                          else                                  STACK_WIND_COOKIE (frame,                                                     afr_changelog_pre_op_cbk, @@ -884,7 +901,8 @@ afr_changelog_pre_op (call_frame_t *frame, xlator_t *this)                                                     priv->children[i],                                                     priv->children[i]->fops->xattrop,                                                     &(local->loc), -                                                   GF_XATTROP_ADD_ARRAY, xattr[i]); +                                                   GF_XATTROP_ADD_ARRAY, xattr[i], +                                                   NULL);                  }                  break; @@ -892,7 +910,8 @@ afr_changelog_pre_op (call_frame_t *frame, xlator_t *this)                  {                          if (local->optimistic_change_log) {                                  afr_changelog_pre_op_cbk (frame, (void *)(long)i, -                                                          this, 1, 0, xattr[i]); +                                                          this, 1, 0, xattr[i], +                                                          NULL);                          } else {                                  STACK_WIND_COOKIE (frame,                                                     afr_changelog_pre_op_cbk, @@ -900,7 +919,8 @@ afr_changelog_pre_op (call_frame_t *frame, xlator_t *this)                                                     priv->children[i],                                                     priv->children[i]->fops->xattrop,                                                     &local->transaction.new_parent_loc, -                                                   GF_XATTROP_ADD_ARRAY, xattr[i]); +                                                   GF_XATTROP_ADD_ARRAY, xattr[i], +                                                   NULL);                          }                          call_count--; @@ -927,7 +947,8 @@ afr_changelog_pre_op (call_frame_t *frame, xlator_t *this)                  {                          if (local->optimistic_change_log) {                                  afr_changelog_pre_op_cbk (frame, (void *)(long)i, -                                                          this, 1, 0, xattr[i]); +                                                          this, 1, 0, xattr[i], +                                                          NULL);                                  break;                          } @@ -938,7 +959,8 @@ afr_changelog_pre_op (call_frame_t *frame, xlator_t *this)                                                     priv->children[i],                                                     priv->children[i]->fops->fxattrop,                                                     local->fd, -                                                   GF_XATTROP_ADD_ARRAY, xattr[i]); +                                                   GF_XATTROP_ADD_ARRAY, xattr[i], +                                                   NULL);                          else                                  STACK_WIND_COOKIE (frame,                                                     afr_changelog_pre_op_cbk, @@ -946,7 +968,8 @@ afr_changelog_pre_op (call_frame_t *frame, xlator_t *this)                                                     priv->children[i],                                                     priv->children[i]->fops->xattrop,                                                     &local->transaction.parent_loc, -                                                   GF_XATTROP_ADD_ARRAY, xattr[i]); +                                                   GF_XATTROP_ADD_ARRAY, xattr[i], +                                                   NULL);                  }                  break;                  } diff --git a/xlators/cluster/afr/src/afr.h b/xlators/cluster/afr/src/afr.h index 09b1bf2a956..918e44d7d92 100644 --- a/xlators/cluster/afr/src/afr.h +++ b/xlators/cluster/afr/src/afr.h @@ -449,7 +449,6 @@ typedef struct _afr_local {                  struct {                          int32_t flags; -                        int32_t wbflags;                  } open;                  struct { @@ -700,6 +699,13 @@ typedef struct _afr_local {          afr_self_heal_t self_heal;          struct marker_str     marker; + +        /* extra data for fops */ +        dict_t         *xdata_req; +        dict_t         *xdata_rsp; + +        mode_t          umask; +        int             xflag;  } afr_local_t;  typedef enum { @@ -722,7 +728,6 @@ typedef struct {          unsigned int *lock_acquired;          int flags; -        int32_t wbflags;          uint64_t up_count;   /* number of CHILD_UPs this fd has seen */          uint64_t down_count; /* number of CHILD_DOWNs this fd has seen */ @@ -858,7 +863,7 @@ afr_set_split_brain (xlator_t *this, inode_t *inode, gf_boolean_t set);  int  afr_open (call_frame_t *frame, xlator_t *this, loc_t *loc, int32_t flags, -          fd_t *fd, int32_t wbflags); +          fd_t *fd, dict_t *xdata);  void  afr_set_opendir_done (xlator_t *this, inode_t *inode); @@ -1032,7 +1037,7 @@ void  afr_set_low_priority (call_frame_t *frame);  int  afr_child_fd_ctx_set (xlator_t *this, fd_t *fd, int32_t child, -                      int flags, int32_t wb_flags); +                      int flags);  gf_boolean_t  afr_have_quorum (char *logname, afr_private_t *priv); diff --git a/xlators/cluster/afr/src/pump.c b/xlators/cluster/afr/src/pump.c index 21d10aff243..8667b4007b0 100644 --- a/xlators/cluster/afr/src/pump.c +++ b/xlators/cluster/afr/src/pump.c @@ -487,7 +487,7 @@ pump_update_resume_path (xlator_t *this)  static int32_t  pump_xattr_cleaner (call_frame_t *frame, void *cookie, xlator_t *this, -                    int32_t op_ret, int32_t op_errno) +                    int32_t op_ret, int32_t op_errno, dict_t *xdata)  {          afr_private_t  *priv      = NULL;          loc_t           loc       = {0}; @@ -753,7 +753,7 @@ pump_cmd_start_setxattr_cbk (call_frame_t *frame,                               void *cookie,                               xlator_t *this,                               int32_t op_ret, -                             int32_t op_errno) +                             int32_t op_errno, dict_t *xdata)  {          call_frame_t *prev = NULL; @@ -846,7 +846,7 @@ pump_initiate_sink_connect (call_frame_t *frame, xlator_t *this)  		    PUMP_SINK_CHILD(this)->fops->setxattr,  		    &loc,  		    dict, -		    0); +		    0, NULL);          ret = 0; @@ -880,7 +880,7 @@ pump_cmd_start_getxattr_cbk (call_frame_t *frame,                               xlator_t *this,                               int32_t op_ret,                               int32_t op_errno, -                             dict_t *dict) +                             dict_t *dict, dict_t *xdata)  {          afr_local_t *local = NULL;          char *path = NULL; @@ -996,7 +996,7 @@ pump_execute_status (call_frame_t *frame, xlator_t *this)  out: -        AFR_STACK_UNWIND (getxattr, frame, op_ret, op_errno, dict); +        AFR_STACK_UNWIND (getxattr, frame, op_ret, op_errno, dict, NULL);          if (dict)                  dict_unref (dict); @@ -1051,7 +1051,7 @@ pump_execute_start (call_frame_t *frame, xlator_t *this)  		    PUMP_SOURCE_CHILD(this),  		    PUMP_SOURCE_CHILD(this)->fops->getxattr,  		    &loc, -		    PUMP_PATH); +		    PUMP_PATH, NULL);          ret = 0; @@ -1069,7 +1069,7 @@ static int  pump_cleanup_helper (void *data) {          call_frame_t *frame = data; -        pump_xattr_cleaner (frame, 0, frame->this, 0, 0); +        pump_xattr_cleaner (frame, 0, frame->this, 0, 0, NULL);          return 0;  } @@ -1151,7 +1151,7 @@ pump_execute_abort (call_frame_t *frame, xlator_t *this)          } else {                  pump_priv->cleaner = fop_setxattr_cbk_stub (frame,                                                              pump_xattr_cleaner, -                                                            0, 0); +                                                            0, 0, NULL);          }          return 0; @@ -1328,7 +1328,7 @@ __filter_xattrs (dict_t *dict)  int32_t  pump_getxattr_cbk (call_frame_t *frame, void *cookie,  		  xlator_t *this, int32_t op_ret, int32_t op_errno, -		  dict_t *dict) +		  dict_t *dict, dict_t *xdata)  {  	afr_private_t   *priv           = NULL;  	afr_local_t     *local          = NULL; @@ -1363,7 +1363,7 @@ pump_getxattr_cbk (call_frame_t *frame, void *cookie,  				   children[next_call_child],  				   children[next_call_child]->fops->getxattr,  				   &local->loc, -				   local->cont.getxattr.name); +				   local->cont.getxattr.name, NULL);  	}  out: @@ -1371,7 +1371,7 @@ out:                  if (op_ret >= 0 && dict)                          __filter_xattrs (dict); -		AFR_STACK_UNWIND (getxattr, frame, op_ret, op_errno, dict); +		AFR_STACK_UNWIND (getxattr, frame, op_ret, op_errno, dict, NULL);  	}  	return 0; @@ -1379,7 +1379,7 @@ out:  int32_t  pump_getxattr (call_frame_t *frame, xlator_t *this, -	      loc_t *loc, const char *name) +	      loc_t *loc, const char *name, dict_t *xdata)  {  	afr_private_t *   priv       = NULL;  	xlator_t **       children   = NULL; @@ -1402,7 +1402,7 @@ pump_getxattr (call_frame_t *frame, xlator_t *this,                  STACK_WIND (frame, default_getxattr_cbk,                              FIRST_CHILD (this),                              (FIRST_CHILD (this))->fops->getxattr, -                            loc, name); +                            loc, name, xdata);                  return 0;          } @@ -1456,12 +1456,12 @@ pump_getxattr (call_frame_t *frame, xlator_t *this,  	STACK_WIND_COOKIE (frame, pump_getxattr_cbk,  			   (void *) (long) call_child,  			   children[call_child], children[call_child]->fops->getxattr, -			   loc, name); +			   loc, name, xdata);  	ret = 0;  out:  	if (ret < 0) -		AFR_STACK_UNWIND (getxattr, frame, -1, op_errno, NULL); +		AFR_STACK_UNWIND (getxattr, frame, -1, op_errno, NULL, NULL);  	return 0;  } @@ -1483,14 +1483,14 @@ afr_setxattr_unwind (call_frame_t *frame, xlator_t *this)  	if (main_frame) {  		AFR_STACK_UNWIND (setxattr, main_frame, -                                  local->op_ret, local->op_errno); +                                  local->op_ret, local->op_errno, NULL);  	}  	return 0;  }  static int  afr_setxattr_wind_cbk (call_frame_t *frame, void *cookie, xlator_t *this, -		       int32_t op_ret, int32_t op_errno) +		       int32_t op_ret, int32_t op_errno, dict_t *xdata)  {  	afr_local_t *   local = NULL;  	afr_private_t * priv  = NULL; @@ -1559,7 +1559,7 @@ afr_setxattr_wind (call_frame_t *frame, xlator_t *this)  					   priv->children[i]->fops->setxattr,  					   &local->loc,  					   local->cont.setxattr.dict, -					   local->cont.setxattr.flags); +					   local->cont.setxattr.flags, NULL);  			if (!--call_count)  				break; @@ -1587,11 +1587,9 @@ pump_setxattr_cbk (call_frame_t *frame,  		      void *cookie,  		      xlator_t *this,  		      int32_t op_ret, -		      int32_t op_errno) +		      int32_t op_errno, dict_t *xdata)  { -	STACK_UNWIND (frame, -		      op_ret, -		      op_errno); +	AFR_STACK_UNWIND (setxattr, frame, op_ret, op_errno, xdata);  	return 0;  } @@ -1614,7 +1612,7 @@ pump_command_reply (call_frame_t *frame, xlator_t *this)          AFR_STACK_UNWIND (setxattr,                            frame,                            local->op_ret, -                          local->op_errno); +                          local->op_errno, NULL);          return 0;  } @@ -1651,7 +1649,7 @@ pump_parse_command (call_frame_t *frame, xlator_t *this,  int  pump_setxattr (call_frame_t *frame, xlator_t *this, -               loc_t *loc, dict_t *dict, int32_t flags) +               loc_t *loc, dict_t *dict, int32_t flags, dict_t *xdata)  {  	afr_private_t * priv  = NULL;  	afr_local_t   * local = NULL; @@ -1672,7 +1670,7 @@ pump_setxattr (call_frame_t *frame, xlator_t *this,                  STACK_WIND (frame, default_setxattr_cbk,                              FIRST_CHILD (this),                              (FIRST_CHILD (this))->fops->setxattr, -                            loc, dict, flags); +                            loc, dict, flags, xdata);                  return 0;          } @@ -1726,7 +1724,7 @@ out:  	if (ret < 0) {  		if (transaction_frame)  			AFR_STACK_DESTROY (transaction_frame); -		AFR_STACK_UNWIND (setxattr, frame, -1, op_errno); +		AFR_STACK_UNWIND (setxattr, frame, -1, op_errno, NULL);  	}  	return 0; @@ -1760,7 +1758,7 @@ static int32_t  pump_truncate (call_frame_t *frame,                 xlator_t *this,                 loc_t *loc, -               off_t offset) +               off_t offset, dict_t *xdata)  {          afr_private_t *priv  = NULL;  	priv = this->private; @@ -1770,11 +1768,11 @@ pump_truncate (call_frame_t *frame,                              FIRST_CHILD(this),                              FIRST_CHILD(this)->fops->truncate,                              loc, -                            offset); +                            offset, xdata);                  return 0;          } -        afr_truncate (frame, this, loc, offset); +        afr_truncate (frame, this, loc, offset, xdata);          return 0;  } @@ -1783,7 +1781,7 @@ static int32_t  pump_ftruncate (call_frame_t *frame,                  xlator_t *this,                  fd_t *fd, -                off_t offset) +                off_t offset, dict_t *xdata)  {          afr_private_t *priv  = NULL;  	priv = this->private; @@ -1793,11 +1791,11 @@ pump_ftruncate (call_frame_t *frame,                              FIRST_CHILD(this),                              FIRST_CHILD(this)->fops->ftruncate,                              fd, -                            offset); +                            offset, xdata);                  return 0;          } -        afr_ftruncate (frame, this, fd, offset); +        afr_ftruncate (frame, this, fd, offset, xdata);          return 0;  } @@ -1806,7 +1804,7 @@ pump_ftruncate (call_frame_t *frame,  int  pump_mknod (call_frame_t *frame, xlator_t *this, -            loc_t *loc, mode_t mode, dev_t rdev, dict_t *parms) +            loc_t *loc, mode_t mode, dev_t rdev, mode_t umask, dict_t *xdata)  {          afr_private_t *priv  = NULL;  	priv = this->private; @@ -1814,10 +1812,10 @@ pump_mknod (call_frame_t *frame, xlator_t *this,                  STACK_WIND (frame, default_mknod_cbk,                              FIRST_CHILD(this),                              FIRST_CHILD(this)->fops->mknod, -                            loc, mode, rdev, parms); +                            loc, mode, rdev, umask, xdata);                  return 0;          } -        afr_mknod (frame, this, loc, mode, rdev, parms); +        afr_mknod (frame, this, loc, mode, rdev, umask, xdata);          return 0;  } @@ -1826,7 +1824,7 @@ pump_mknod (call_frame_t *frame, xlator_t *this,  int  pump_mkdir (call_frame_t *frame, xlator_t *this, -            loc_t *loc, mode_t mode, dict_t *params) +            loc_t *loc, mode_t mode, mode_t umask, dict_t *xdata)  {          afr_private_t *priv  = NULL;  	priv = this->private; @@ -1834,10 +1832,10 @@ pump_mkdir (call_frame_t *frame, xlator_t *this,                  STACK_WIND (frame, default_mkdir_cbk,                              FIRST_CHILD(this),                              FIRST_CHILD(this)->fops->mkdir, -                            loc, mode, params); +                            loc, mode, umask, xdata);                  return 0;          } -        afr_mkdir (frame, this, loc, mode, params); +        afr_mkdir (frame, this, loc, mode, umask, xdata);          return 0;  } @@ -1846,7 +1844,7 @@ pump_mkdir (call_frame_t *frame, xlator_t *this,  static int32_t  pump_unlink (call_frame_t *frame,               xlator_t *this, -             loc_t *loc) +             loc_t *loc, int xflag, dict_t *xdata)  {          afr_private_t *priv  = NULL;  	priv = this->private; @@ -1855,10 +1853,10 @@ pump_unlink (call_frame_t *frame,                              default_unlink_cbk,                              FIRST_CHILD(this),                              FIRST_CHILD(this)->fops->unlink, -                            loc); +                            loc, xflag, xdata);                  return 0;          } -        afr_unlink (frame, this, loc); +        afr_unlink (frame, this, loc, xflag, xdata);          return 0;  } @@ -1866,7 +1864,7 @@ pump_unlink (call_frame_t *frame,  static int  pump_rmdir (call_frame_t *frame, xlator_t *this, -            loc_t *loc, int flags) +            loc_t *loc, int flags, dict_t *xdata)  {          afr_private_t *priv  = NULL; @@ -1876,11 +1874,11 @@ pump_rmdir (call_frame_t *frame, xlator_t *this,                  STACK_WIND (frame, default_rmdir_cbk,                              FIRST_CHILD(this),                              FIRST_CHILD(this)->fops->rmdir, -                            loc, flags); +                            loc, flags, xdata);                  return 0;          } -        afr_rmdir (frame, this, loc, flags); +        afr_rmdir (frame, this, loc, flags, xdata);          return 0;  } @@ -1889,7 +1887,7 @@ pump_rmdir (call_frame_t *frame, xlator_t *this,  int  pump_symlink (call_frame_t *frame, xlator_t *this, -              const char *linkpath, loc_t *loc, dict_t *params) +              const char *linkpath, loc_t *loc, mode_t umask, dict_t *xdata)  {          afr_private_t *priv  = NULL;  	priv = this->private; @@ -1897,10 +1895,10 @@ pump_symlink (call_frame_t *frame, xlator_t *this,                  STACK_WIND (frame, default_symlink_cbk,                              FIRST_CHILD(this),                              FIRST_CHILD(this)->fops->symlink, -                            linkpath, loc, params); +                            linkpath, loc, umask, xdata);                  return 0;          } -        afr_symlink (frame, this, linkpath, loc, params); +        afr_symlink (frame, this, linkpath, loc, umask, xdata);          return 0;  } @@ -1910,7 +1908,7 @@ static int32_t  pump_rename (call_frame_t *frame,               xlator_t *this,               loc_t *oldloc, -             loc_t *newloc) +             loc_t *newloc, dict_t *xdata)  {          afr_private_t *priv  = NULL;  	priv = this->private; @@ -1919,10 +1917,10 @@ pump_rename (call_frame_t *frame,                              default_rename_cbk,                              FIRST_CHILD(this),                              FIRST_CHILD(this)->fops->rename, -                            oldloc, newloc); +                            oldloc, newloc, xdata);                  return 0;          } -        afr_rename (frame, this, oldloc, newloc); +        afr_rename (frame, this, oldloc, newloc, xdata);          return 0;  } @@ -1932,7 +1930,7 @@ static int32_t  pump_link (call_frame_t *frame,             xlator_t *this,             loc_t *oldloc, -           loc_t *newloc) +           loc_t *newloc, dict_t *xdata)  {          afr_private_t *priv  = NULL;  	priv = this->private; @@ -1941,10 +1939,10 @@ pump_link (call_frame_t *frame,                              default_link_cbk,                              FIRST_CHILD(this),                              FIRST_CHILD(this)->fops->link, -                            oldloc, newloc); +                            oldloc, newloc, xdata);                  return 0;          } -        afr_link (frame, this, oldloc, newloc); +        afr_link (frame, this, oldloc, newloc, xdata);          return 0;  } @@ -1953,7 +1951,7 @@ pump_link (call_frame_t *frame,  static int32_t  pump_create (call_frame_t *frame, xlator_t *this,               loc_t *loc, int32_t flags, mode_t mode, -             fd_t *fd, dict_t *params) +             mode_t umask, fd_t *fd, dict_t *xdata)  {          afr_private_t *priv  = NULL;  	priv = this->private; @@ -1961,10 +1959,10 @@ pump_create (call_frame_t *frame, xlator_t *this,                  STACK_WIND (frame, default_create_cbk,                              FIRST_CHILD(this),                              FIRST_CHILD(this)->fops->create, -                            loc, flags, mode, fd, params); +                            loc, flags, mode, umask, fd, xdata);                  return 0;          } -        afr_create (frame, this, loc, flags, mode, fd, params); +        afr_create (frame, this, loc, flags, mode, umask, fd, xdata);          return 0;  } @@ -1974,8 +1972,7 @@ static int32_t  pump_open (call_frame_t *frame,             xlator_t *this,             loc_t *loc, -           int32_t flags, fd_t *fd, -           int32_t wbflags) +           int32_t flags, fd_t *fd, dict_t *xdata)  {          afr_private_t *priv  = NULL;  	priv = this->private; @@ -1984,10 +1981,10 @@ pump_open (call_frame_t *frame,                              default_open_cbk,                              FIRST_CHILD(this),                              FIRST_CHILD(this)->fops->open, -                            loc, flags, fd, wbflags); +                            loc, flags, fd, xdata);                  return 0;          } -        afr_open (frame, this, loc, flags, fd, wbflags); +        afr_open (frame, this, loc, flags, fd, xdata);          return 0;  } @@ -2000,7 +1997,7 @@ pump_writev (call_frame_t *frame,               struct iovec *vector,               int32_t count,               off_t off, uint32_t flags, -             struct iobref *iobref) +             struct iobref *iobref, dict_t *xdata)  {          afr_private_t *priv  = NULL;  	priv = this->private; @@ -2013,19 +2010,19 @@ pump_writev (call_frame_t *frame,                              vector,                              count,                              off, flags, -                            iobref); +                            iobref, xdata);                  return 0;          } -        afr_writev (frame, this, fd, vector, count, off, flags, iobref); -        return 0; +        afr_writev (frame, this, fd, vector, count, off, flags, iobref, xdata); +        return 0;  }  static int32_t  pump_flush (call_frame_t *frame,              xlator_t *this, -            fd_t *fd) +            fd_t *fd, dict_t *xdata)  {          afr_private_t *priv  = NULL;  	priv = this->private; @@ -2034,10 +2031,10 @@ pump_flush (call_frame_t *frame,                              default_flush_cbk,                              FIRST_CHILD(this),                              FIRST_CHILD(this)->fops->flush, -                            fd); +                            fd, xdata);                  return 0;          } -        afr_flush (frame, this, fd); +        afr_flush (frame, this, fd, xdata);          return 0;  } @@ -2047,7 +2044,7 @@ static int32_t  pump_fsync (call_frame_t *frame,              xlator_t *this,              fd_t *fd, -            int32_t flags) +            int32_t flags, dict_t *xdata)  {          afr_private_t *priv  = NULL;  	priv = this->private; @@ -2057,10 +2054,10 @@ pump_fsync (call_frame_t *frame,                              FIRST_CHILD(this),                              FIRST_CHILD(this)->fops->fsync,                              fd, -                            flags); +                            flags, xdata);                  return 0;          } -        afr_fsync (frame, this, fd, flags); +        afr_fsync (frame, this, fd, flags, xdata);          return 0;  } @@ -2069,7 +2066,7 @@ pump_fsync (call_frame_t *frame,  static int32_t  pump_opendir (call_frame_t *frame,                xlator_t *this, -              loc_t *loc, fd_t *fd) +              loc_t *loc, fd_t *fd, dict_t *xdata)  {          afr_private_t *priv  = NULL;  	priv = this->private; @@ -2078,10 +2075,10 @@ pump_opendir (call_frame_t *frame,                              default_opendir_cbk,                              FIRST_CHILD(this),                              FIRST_CHILD(this)->fops->opendir, -                            loc, fd); +                            loc, fd, xdata);                  return 0;          } -        afr_opendir (frame, this, loc, fd); +        afr_opendir (frame, this, loc, fd, xdata);          return 0;  } @@ -2091,7 +2088,7 @@ static int32_t  pump_fsyncdir (call_frame_t *frame,                 xlator_t *this,                 fd_t *fd, -               int32_t flags) +               int32_t flags, dict_t *xdata)  {          afr_private_t *priv  = NULL;  	priv = this->private; @@ -2101,10 +2098,10 @@ pump_fsyncdir (call_frame_t *frame,                              FIRST_CHILD(this),                              FIRST_CHILD(this)->fops->fsyncdir,                              fd, -                            flags); +                            flags, xdata);                  return 0;          } -        afr_fsyncdir (frame, this, fd, flags); +        afr_fsyncdir (frame, this, fd, flags, xdata);          return 0;  } @@ -2115,7 +2112,7 @@ pump_xattrop (call_frame_t *frame,                xlator_t *this,                loc_t *loc,                gf_xattrop_flags_t flags, -              dict_t *dict) +              dict_t *dict, dict_t *xdata)  {          afr_private_t *priv  = NULL;  	priv = this->private; @@ -2126,10 +2123,10 @@ pump_xattrop (call_frame_t *frame,                              FIRST_CHILD(this)->fops->xattrop,                              loc,                              flags, -                            dict); +                            dict, xdata);                  return 0;          } -        afr_xattrop (frame, this, loc, flags, dict); +        afr_xattrop (frame, this, loc, flags, dict, xdata);          return 0;  } @@ -2139,7 +2136,7 @@ pump_fxattrop (call_frame_t *frame,                 xlator_t *this,                 fd_t *fd,                 gf_xattrop_flags_t flags, -               dict_t *dict) +               dict_t *dict, dict_t *xdata)  {          afr_private_t *priv  = NULL;  	priv = this->private; @@ -2150,10 +2147,10 @@ pump_fxattrop (call_frame_t *frame,                              FIRST_CHILD(this)->fops->fxattrop,                              fd,                              flags, -                            dict); +                            dict, xdata);                  return 0;          } -        afr_fxattrop (frame, this, fd, flags, dict); +        afr_fxattrop (frame, this, fd, flags, dict, xdata);          return 0;  } @@ -2163,7 +2160,7 @@ static int32_t  pump_removexattr (call_frame_t *frame,                    xlator_t *this,                    loc_t *loc, -                  const char *name) +                  const char *name, dict_t *xdata)  {          afr_private_t *priv     = NULL;          int            op_errno = -1; @@ -2181,14 +2178,14 @@ pump_removexattr (call_frame_t *frame,                              FIRST_CHILD(this),                              FIRST_CHILD(this)->fops->removexattr,                              loc, -                            name); +                            name, xdata);                  return 0;          } -        afr_removexattr (frame, this, loc, name); +        afr_removexattr (frame, this, loc, name, xdata);   out:          if (op_errno) -                AFR_STACK_UNWIND (removexattr, frame, -1, op_errno); +                AFR_STACK_UNWIND (removexattr, frame, -1, op_errno, NULL);          return 0;  } @@ -2200,7 +2197,7 @@ pump_readdir (call_frame_t *frame,                xlator_t *this,                fd_t *fd,                size_t size, -              off_t off) +              off_t off, dict_t *xdata)  {          afr_private_t *priv  = NULL;  	priv = this->private; @@ -2209,10 +2206,10 @@ pump_readdir (call_frame_t *frame,                              default_readdir_cbk,                              FIRST_CHILD(this),                              FIRST_CHILD(this)->fops->readdir, -                            fd, size, off); +                            fd, size, off, xdata);                  return 0;          } -        afr_readdir (frame, this, fd, size, off); +        afr_readdir (frame, this, fd, size, off, xdata);          return 0;  } @@ -2269,7 +2266,7 @@ pump_setattr (call_frame_t *frame,                xlator_t *this,                loc_t *loc,                struct iatt *stbuf, -              int32_t valid) +              int32_t valid, dict_t *xdata)  {          afr_private_t *priv  = NULL;  	priv = this->private; @@ -2278,10 +2275,10 @@ pump_setattr (call_frame_t *frame,                              default_setattr_cbk,                              FIRST_CHILD (this),                              FIRST_CHILD (this)->fops->setattr, -                            loc, stbuf, valid); +                            loc, stbuf, valid, xdata);                  return 0;          } -        afr_setattr (frame, this, loc, stbuf, valid); +        afr_setattr (frame, this, loc, stbuf, valid, xdata);          return 0;  } @@ -2292,7 +2289,7 @@ pump_fsetattr (call_frame_t *frame,                 xlator_t *this,                 fd_t *fd,                 struct iatt *stbuf, -               int32_t valid) +               int32_t valid, dict_t *xdata)  {          afr_private_t *priv  = NULL;  	priv = this->private; @@ -2301,10 +2298,10 @@ pump_fsetattr (call_frame_t *frame,                              default_fsetattr_cbk,                              FIRST_CHILD (this),                              FIRST_CHILD (this)->fops->fsetattr, -                            fd, stbuf, valid); +                            fd, stbuf, valid, xdata);                  return 0;          } -        afr_fsetattr (frame, this, fd, stbuf, valid); +        afr_fsetattr (frame, this, fd, stbuf, valid, xdata);          return 0;  }  | 
