diff options
| -rw-r--r-- | xlators/cluster/dht/src/dht-common.c | 11 | 
1 files changed, 10 insertions, 1 deletions
diff --git a/xlators/cluster/dht/src/dht-common.c b/xlators/cluster/dht/src/dht-common.c index c9889514762..da6c111f438 100644 --- a/xlators/cluster/dht/src/dht-common.c +++ b/xlators/cluster/dht/src/dht-common.c @@ -3975,6 +3975,15 @@ err:  }  int +dht_nuke_dir_cbk (call_frame_t *frame, void *cookie, xlator_t *this, +                  int32_t op_ret, int32_t op_errno, struct iatt *preparent, +                  struct iatt *postparent, dict_t *xdata) +{ +        STACK_UNWIND_STRICT (setxattr, frame, op_ret, op_errno, NULL); +        return 0; +} + +int  dht_nuke_dir (call_frame_t *frame, xlator_t *this, loc_t *loc, data_t *tmp)  {          if (!IA_ISDIR(loc->inode->ia_type)) { @@ -4005,7 +4014,7 @@ dht_nuke_dir (call_frame_t *frame, xlator_t *this, loc_t *loc, data_t *tmp)           * obscure the fact that we came in via this path instead of a genuine           * rmdir.  That makes debugging just a tiny bit easier.           */ -        STACK_WIND (frame, default_rmdir_cbk, this, this->fops->rmdir, +        STACK_WIND (frame, dht_nuke_dir_cbk, this, this->fops->rmdir,                      loc, 1, NULL);          return 0;  | 
