diff options
author | Mohit Agrawal <moagrawa@redhat.com> | 2018-05-10 16:54:44 +0530 |
---|---|---|
committer | N Balachandran <nbalacha@redhat.com> | 2018-05-11 04:36:27 +0000 |
commit | 08dcb1c2bf02bba313d3bfc8fbc1c8ea63296321 (patch) | |
tree | 3930d5bd043023fa664be82d7f14d5a04d2cadb7 /xlators | |
parent | b4ce5e090dee2afc9ed0c86456a54f76a2bb6563 (diff) |
dht: Excessive 'dict is null' logs in dht_discover_complete
Problem: In Geo-Rep setup excessive "dict is null" logs in
dht_discover_complete while xattr is NULL
Solution: To avoid the logs update a condition in dht_discover_complete
BUG: 1576767
Change-Id: Ic7aad712d9b6d69b85b76e4fdf2881adb0512237
fixes: bz#1576767
Signed-off-by: Mohit Agrawal <moagrawa@redhat.com>
Diffstat (limited to 'xlators')
-rw-r--r-- | xlators/cluster/dht/src/dht-common.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xlators/cluster/dht/src/dht-common.c b/xlators/cluster/dht/src/dht-common.c index 1ad408f0c0d..c436ad48d9d 100644 --- a/xlators/cluster/dht/src/dht-common.c +++ b/xlators/cluster/dht/src/dht-common.c @@ -754,7 +754,8 @@ cleanup: done: dht_set_fixed_dir_stat (&local->postparent); /* Delete mds xattr at the time of STACK UNWIND */ - GF_REMOVE_INTERNAL_XATTR (conf->mds_xattr_key, local->xattr); + if (local->xattr) + GF_REMOVE_INTERNAL_XATTR (conf->mds_xattr_key, local->xattr); DHT_STACK_UNWIND (lookup, main_frame, local->op_ret, local->op_errno, local->inode, &local->stbuf, local->xattr, |