From c7fd9f1df36a01ac9a1509d1001b0d259005b0f9 Mon Sep 17 00:00:00 2001 From: Shehjar Tikoo Date: Thu, 21 May 2009 01:37:05 +0000 Subject: mem-pool,io-threads: Destroy mem-pool on deallocation Signed-off-by: Anand V. Avati --- xlators/performance/io-threads/src/io-threads.c | 1 + 1 file changed, 1 insertion(+) (limited to 'xlators/performance/io-threads') diff --git a/xlators/performance/io-threads/src/io-threads.c b/xlators/performance/io-threads/src/io-threads.c index 3136c9c1a..f16833609 100644 --- a/xlators/performance/io-threads/src/io-threads.c +++ b/xlators/performance/io-threads/src/io-threads.c @@ -2563,6 +2563,7 @@ deallocate_workers (iot_worker_t **workers, end_count = count + start_alloc_idx; for (i = start_alloc_idx; (i < end_count); i++) { if (workers[i] != NULL) { + mem_pool_destroy (workers[i]->req_pool); FREE (workers[i]); workers[i] = NULL; } -- cgit