summaryrefslogtreecommitdiffstats
path: root/xlators/cluster/dht/src/dht-layout.c
diff options
context:
space:
mode:
authorAnand Avati <avati@gluster.com>2010-01-23 13:26:39 +0000
committerAnand V. Avati <avati@dev.gluster.com>2010-01-23 11:07:05 -0800
commitda505a63c12ea9be0e783711547fe7bbfecf05ea (patch)
treeb42733b001541dee623b6de0165b23cb93393ff8 /xlators/cluster/dht/src/dht-layout.c
parent6313f854fb41ef0a61a40b08a4cf05254763eb21 (diff)
dht: initialize layout type
Instead of relying on CALLOC's zero initialization which happens to be the value of DHT_HASH_TYPE_DM, explicitly set the value Signed-off-by: Anand V. Avati <avati@amp.gluster.com> Signed-off-by: Anand V. Avati <avati@dev.gluster.com> BUG: 523 (Hash type is not initialized in dht_layout_new) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=523
Diffstat (limited to 'xlators/cluster/dht/src/dht-layout.c')
-rw-r--r--xlators/cluster/dht/src/dht-layout.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/xlators/cluster/dht/src/dht-layout.c b/xlators/cluster/dht/src/dht-layout.c
index 4b7b44fc4..e43be876a 100644
--- a/xlators/cluster/dht/src/dht-layout.c
+++ b/xlators/cluster/dht/src/dht-layout.c
@@ -51,6 +51,7 @@ dht_layout_new (xlator_t *this, int cnt)
goto out;
}
+ layout->type = DHT_HASH_TYPE_DM;
layout->cnt = cnt;
if (conf)
layout->gen = conf->gen;