diff options
author | Amar Tumballi <amar@gluster.com> | 2010-09-27 09:26:17 +0000 |
---|---|---|
committer | Vijay Bellur <vijay@dev.gluster.com> | 2010-09-27 22:53:21 -0700 |
commit | dbbec1261eae8440726b001df8fe4c06837d6f3d (patch) | |
tree | 94ecb8bc8e1e02961702c8731bcbfaabce7476ff | |
parent | efd1f08b57a3175cab9bb543833bc3c9192b527d (diff) |
distribute: don't check for inode's gfid in _cbkv3.1.0qa34
* in dht_lookup_dir_cbk(), at the entry itself we are dereferencing
local->inode, which can be NULL in many cases. Hence no need to
check/dereference that variable. Just check 'local->gfid'.
Signed-off-by: Amar Tumballi <amar@gluster.com>
Signed-off-by: Vijay Bellur <vijay@dev.gluster.com>
BUG: 1696 ()
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1696
-rw-r--r-- | xlators/cluster/dht/src/dht-common.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/xlators/cluster/dht/src/dht-common.c b/xlators/cluster/dht/src/dht-common.c index f57e5538bcf..46685c9e2f4 100644 --- a/xlators/cluster/dht/src/dht-common.c +++ b/xlators/cluster/dht/src/dht-common.c @@ -100,8 +100,7 @@ dht_lookup_dir_cbk (call_frame_t *frame, void *cookie, xlator_t *this, layout = local->layout; - if (!op_ret && uuid_is_null (local->gfid) && - uuid_is_null (local->inode->gfid)) + if (!op_ret && uuid_is_null (local->gfid)) memcpy (local->gfid, stbuf->ia_gfid, 16); LOCK (&frame->lock); |