summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiguang Li <liguang.lee6@gmail.com>2019-11-05 13:55:39 +0530
committerN Balachandran <nbalacha@redhat.com>2019-11-05 13:55:48 +0530
commitaa60bea1753bb744c892b669a3e693803b0db385 (patch)
tree8a5d4a2e643235fa9611118032297817352a8874
parent11cbd2da4a065332d0b8eee624b654a9991a0170 (diff)
Detach iot_worker to release its resources
When iot_worker terminates, its resources have not been reaped, which will consumes lots of memory. Detach iot_worker to automically release its resources back to the system. Change-Id: I71fabb2940e76ad54dc56b4c41aeeead2644b8bb fixes: bz#1718734 Signed-off-by: Liguang Li <liguang.lee6@gmail.com> Signed-off-by: N Balachandran <nbalacha@redhat.com>
-rw-r--r--xlators/performance/io-threads/src/io-threads.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/xlators/performance/io-threads/src/io-threads.c b/xlators/performance/io-threads/src/io-threads.c
index 8c51f09a01d..9382a978506 100644
--- a/xlators/performance/io-threads/src/io-threads.c
+++ b/xlators/performance/io-threads/src/io-threads.c
@@ -836,6 +836,7 @@ __iot_workers_scale(iot_conf_t *conf)
ret = gf_thread_create(&thread, &conf->w_attr, iot_worker, conf,
thread_name);
if (ret == 0) {
+ pthread_detach(thread);
conf->curr_count++;
gf_msg_debug(conf->this->name, 0,
"scaled threads to %d (queue_size=%d/%d)",