[Asterisk-code-review] threadpool: Eliminate pointless AO2 usage. (asterisk[13])
Corey Farrell
asteriskteam at digium.com
Thu Oct 11 07:05:22 CDT 2018
Corey Farrell has uploaded this change for review. ( https://gerrit.asterisk.org/10470
Change subject: threadpool: Eliminate pointless AO2 usage.
......................................................................
threadpool: Eliminate pointless AO2 usage.
thread_worker_pair, set_size_data and task_pushed_data structures are
allocated with AO2 objects, passed to a taskprocessor, then released.
They never have multiple owners or use locking so AO2 only adds
overhead.
Change-Id: I2204d2615d9d952670fcb48e0a9c0dd1a6ba5036
---
M main/threadpool.c
1 file changed, 14 insertions(+), 11 deletions(-)
git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/70/10470/1
diff --git a/main/threadpool.c b/main/threadpool.c
index e3d0e40..2306d59 100644
--- a/main/threadpool.c
+++ b/main/threadpool.c
@@ -200,10 +200,10 @@
/*!
* \brief Destructor for thread_worker_pair
*/
-static void thread_worker_pair_destructor(void *obj)
+static void thread_worker_pair_free(struct thread_worker_pair *pair)
{
- struct thread_worker_pair *pair = obj;
ao2_ref(pair->worker, -1);
+ ast_free(pair);
}
/*!
@@ -214,13 +214,14 @@
static struct thread_worker_pair *thread_worker_pair_alloc(struct ast_threadpool *pool,
struct worker_thread *worker)
{
- struct thread_worker_pair *pair = ao2_alloc(sizeof(*pair), thread_worker_pair_destructor);
+ struct thread_worker_pair *pair = ast_malloc(sizeof(*pair));
if (!pair) {
return NULL;
}
pair->pool = pool;
ao2_ref(worker, +1);
pair->worker = worker;
+
return pair;
}
@@ -240,7 +241,7 @@
threadpool_send_state_changed(pair->pool);
- ao2_ref(pair, -1);
+ thread_worker_pair_free(pair);
return 0;
}
@@ -282,7 +283,7 @@
ao2_unlink(pair->pool->zombie_threads, pair->worker);
threadpool_send_state_changed(pair->pool);
- ao2_ref(pair, -1);
+ thread_worker_pair_free(pair);
return 0;
}
@@ -314,7 +315,7 @@
ao2_unlink(pair->pool->idle_threads, pair->worker);
threadpool_send_state_changed(pair->pool);
- ao2_ref(pair, -1);
+ thread_worker_pair_free(pair);
return 0;
}
@@ -447,7 +448,7 @@
static struct task_pushed_data *task_pushed_data_alloc(struct ast_threadpool *pool,
int was_empty)
{
- struct task_pushed_data *tpd = ao2_alloc(sizeof(*tpd), NULL);
+ struct task_pushed_data *tpd = ast_malloc(sizeof(*tpd));
if (!tpd) {
return NULL;
@@ -549,6 +550,8 @@
int was_empty = tpd->was_empty;
unsigned int existing_active;
+ ast_free(tpd);
+
if (pool->listener && pool->listener->callbacks->task_pushed) {
pool->listener->callbacks->task_pushed(pool, pool->listener, was_empty);
}
@@ -565,7 +568,6 @@
/* If no idle threads could be transitioned to active grow the pool as permitted. */
if (ao2_container_count(pool->active_threads) == existing_active) {
if (!pool->options.auto_increment) {
- ao2_ref(tpd, -1);
return 0;
}
grow(pool, pool->options.auto_increment);
@@ -575,7 +577,6 @@
}
threadpool_send_state_changed(pool);
- ao2_ref(tpd, -1);
return 0;
}
@@ -790,7 +791,7 @@
static struct set_size_data *set_size_data_alloc(struct ast_threadpool *pool,
unsigned int size)
{
- struct set_size_data *ssd = ao2_alloc(sizeof(*ssd), NULL);
+ struct set_size_data *ssd = ast_malloc(sizeof(*ssd));
if (!ssd) {
return NULL;
}
@@ -813,7 +814,7 @@
*/
static int queued_set_size(void *data)
{
- RAII_VAR(struct set_size_data *, ssd, data, ao2_cleanup);
+ struct set_size_data *ssd = data;
struct ast_threadpool *pool = ssd->pool;
unsigned int num_threads = ssd->size;
@@ -821,6 +822,8 @@
unsigned int current_size = ao2_container_count(pool->active_threads) +
ao2_container_count(pool->idle_threads);
+ ast_free(ssd);
+
if (current_size == num_threads) {
ast_debug(3, "Not changing threadpool size since new size %u is the same as current %u\n",
num_threads, current_size);
--
To view, visit https://gerrit.asterisk.org/10470
To unsubscribe, or for help writing mail filters, visit https://gerrit.asterisk.org/settings
Gerrit-Project: asterisk
Gerrit-Branch: 13
Gerrit-MessageType: newchange
Gerrit-Change-Id: I2204d2615d9d952670fcb48e0a9c0dd1a6ba5036
Gerrit-Change-Number: 10470
Gerrit-PatchSet: 1
Gerrit-Owner: Corey Farrell <git at cfware.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20181011/60cb2fa8/attachment.html>
More information about the asterisk-code-review
mailing list