diff options
Diffstat (limited to 'xlators')
| -rw-r--r-- | xlators/cluster/afr/src/afr-inode-read.c | 14 | ||||
| -rw-r--r-- | xlators/cluster/dht/src/tier.c | 2 | ||||
| -rw-r--r-- | xlators/cluster/stripe/src/stripe.c | 4 | 
3 files changed, 10 insertions, 10 deletions
diff --git a/xlators/cluster/afr/src/afr-inode-read.c b/xlators/cluster/afr/src/afr-inode-read.c index e8192a2b753..350d0325470 100644 --- a/xlators/cluster/afr/src/afr-inode-read.c +++ b/xlators/cluster/afr/src/afr-inode-read.c @@ -435,7 +435,7 @@ __gather_xattr_keys (dict_t *dict, char *key, data_t *value,          struct _xattr_key * xkey  = NULL;          if (!strncmp (key, AFR_XATTR_PREFIX, -                      strlen (AFR_XATTR_PREFIX))) { +                      SLEN (AFR_XATTR_PREFIX))) {                  xkey = GF_CALLOC (1, sizeof (*xkey), gf_afr_mt_xattr_key);                  if (!xkey) @@ -814,7 +814,7 @@ unlock:                  /*Since we store the UUID0_STR as node uuid for down bricks and                   *for non zero op_ret, assigning length to  priv->child_count                   *number of uuids*/ -                local->cont.getxattr.xattr_len = (strlen (UUID0_STR) + 2) * +                local->cont.getxattr.xattr_len = (SLEN (UUID0_STR) + 2) *                                                    priv->child_count;                  if (!local->dict) @@ -1214,7 +1214,7 @@ unlock:                  /* extra bytes for decorations (brackets and <>'s) */                  padding += strlen (this->name) -                        + strlen (AFR_PATHINFO_HEADER) + 4; +                        + SLEN (AFR_PATHINFO_HEADER) + 4;                  local->cont.getxattr.xattr_len += (padding + 2);                  xattr_serz = GF_CALLOC (local->cont.getxattr.xattr_len, @@ -1339,7 +1339,7 @@ unlock:                          goto unwind;                  /* extra bytes for decorations (brackets and <>'s) */ -                padding += strlen (this->name) + strlen (AFR_PATHINFO_HEADER) + 4; +                padding += strlen (this->name) + SLEN (AFR_PATHINFO_HEADER) + 4;                  local->cont.getxattr.xattr_len += (padding + 2);                  xattr_serz = GF_CALLOC (local->cont.getxattr.xattr_len, @@ -1460,14 +1460,14 @@ afr_is_special_xattr (const char *name, fop_getxattr_cbk_t *cbk,                          *cbk = afr_getxattr_pathinfo_cbk;                  }          } else if (!strncmp (name, GF_XATTR_CLRLK_CMD, -                             strlen (GF_XATTR_CLRLK_CMD))) { +                             SLEN (GF_XATTR_CLRLK_CMD))) {                  if (is_fgetxattr) {                          *cbk = afr_fgetxattr_clrlk_cbk;                  } else {                          *cbk = afr_getxattr_clrlk_cbk;                  }          } else if (!strncmp (name, GF_XATTR_LOCKINFO_KEY, -                             strlen (GF_XATTR_LOCKINFO_KEY))) { +                             SLEN (GF_XATTR_LOCKINFO_KEY))) {                  if (is_fgetxattr) {                          *cbk = afr_fgetxattr_lockinfo_cbk;                  } else { @@ -1633,7 +1633,7 @@ afr_getxattr (call_frame_t *frame, xlator_t *this,  	}          if (!strncmp (name, AFR_XATTR_PREFIX, -                      strlen (AFR_XATTR_PREFIX))) { +                      SLEN (AFR_XATTR_PREFIX))) {                  op_errno = ENODATA;                  goto out;          } diff --git a/xlators/cluster/dht/src/tier.c b/xlators/cluster/dht/src/tier.c index fd57ddfaaab..13ce7f4fb2b 100644 --- a/xlators/cluster/dht/src/tier.c +++ b/xlators/cluster/dht/src/tier.c @@ -1583,7 +1583,7 @@ tier_process_brick (tier_brick_list_t *local_brick, void *args) {                          goto out;                  } -                if (strval && (strncmp(strval, "wal", strlen ("wal")) == 0)) { +                if (strval && (strncmp(strval, "wal", SLEN ("wal")) == 0)) {                          ret = tier_process_self_query (local_brick, args);                          if (ret) {                                  goto out; diff --git a/xlators/cluster/stripe/src/stripe.c b/xlators/cluster/stripe/src/stripe.c index ae84757bb50..75851aa6c5d 100644 --- a/xlators/cluster/stripe/src/stripe.c +++ b/xlators/cluster/stripe/src/stripe.c @@ -5528,7 +5528,7 @@ stripe_getxattr (call_frame_t *frame, xlator_t *this,          if (name && strncmp (name, QUOTA_SIZE_KEY, -                             strlen (QUOTA_SIZE_KEY)) == 0) { +                             SLEN (QUOTA_SIZE_KEY)) == 0) {                  local->wind_count = priv->child_count;                  for (i = 0, trav=this->children; i < priv->child_count; i++, @@ -5596,7 +5596,7 @@ stripe_is_special_xattr (const char *name)          }          if (!strncmp (name, GF_XATTR_LOCKINFO_KEY, -                      strlen (GF_XATTR_LOCKINFO_KEY)) +                      SLEN (GF_XATTR_LOCKINFO_KEY))              || XATTR_IS_PATHINFO (name))                  is_spl = _gf_true;  out:  | 
