From 994d6de08c208509f69b2a0df16f6398dde49215 Mon Sep 17 00:00:00 2001 From: Raghavendra G Date: Sat, 18 Sep 2010 03:21:56 +0000 Subject: cluster/afr: allocate memory big enough to hold iatt structures. Signed-off-by: Raghavendra G Signed-off-by: Vijay Bellur BUG: 927 () URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=927 --- xlators/cluster/afr/src/afr-self-heal-common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xlators/cluster/afr/src/afr-self-heal-common.c') diff --git a/xlators/cluster/afr/src/afr-self-heal-common.c b/xlators/cluster/afr/src/afr-self-heal-common.c index 19ad4a849..2e677d775 100644 --- a/xlators/cluster/afr/src/afr-self-heal-common.c +++ b/xlators/cluster/afr/src/afr-self-heal-common.c @@ -1648,8 +1648,8 @@ afr_self_heal (call_frame_t *frame, xlator_t *this) sh->completion_cbk = afr_self_heal_completion_cbk; - sh->buf = GF_CALLOC (priv->child_count, sizeof (struct stat), - gf_afr_mt_stat); + sh->buf = GF_CALLOC (priv->child_count, sizeof (struct iatt), + gf_afr_mt_iatt); sh->child_errno = GF_CALLOC (priv->child_count, sizeof (int), gf_afr_mt_int); sh->success = GF_CALLOC (priv->child_count, sizeof (int), -- cgit