summaryrefslogtreecommitdiffstats
path: root/libglusterfs
diff options
context:
space:
mode:
authorSusant Palai <spalai@redhat.com>2016-07-21 18:17:21 +0530
committerRaghavendra G <rgowdapp@redhat.com>2016-07-28 05:46:30 -0700
commitb8e8bfc7e4d3eaf76bb637221bc6392ec10ca54b (patch)
tree9fd37dd5874d173bcb4c166c7c5fb6245543ae65 /libglusterfs
parent7e00626b0dcd04b4f38d7cb1a3288ba6740ed9b6 (diff)
dht/rebalance: allocate migrator thread pool dynamically
Problems: The maximum number of migratior threads created was static set to "40". And the number of these threads get created in rebalance depends on the number of cores user has. If the number of cores exceeds 40, a crash or memory corruption can be seen. Fix: Make the migratior thread pool dynamic. Change-Id: Ifbdac8a1a396363dd75e2f6bcb454070cfdbf839 BUG: 1359711 Signed-off-by: Susant Palai <spalai@redhat.com> Reviewed-on: http://review.gluster.org/15000 Smoke: Gluster Build System <jenkins@build.gluster.org> NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org> CentOS-regression: Gluster Build System <jenkins@build.gluster.org> Reviewed-by: Raghavendra G <rgowdapp@redhat.com>
Diffstat (limited to 'libglusterfs')
-rw-r--r--libglusterfs/src/mem-types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libglusterfs/src/mem-types.h b/libglusterfs/src/mem-types.h
index b2a1a6ba4c7..6c0472f00b8 100644
--- a/libglusterfs/src/mem-types.h
+++ b/libglusterfs/src/mem-types.h
@@ -171,6 +171,7 @@ enum gf_common_mem_types_ {
gf_common_mt_tbf_t,
gf_common_mt_tbf_bucket_t,
gf_common_mt_tbf_throttle_t,
+ gf_common_mt_pthread_t,
gf_common_mt_end
};
#endif