From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=41895 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PdM5M-00089A-H9 for qemu-devel@nongnu.org; Thu, 13 Jan 2011 07:15:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PdM5L-0001xi-D9 for qemu-devel@nongnu.org; Thu, 13 Jan 2011 07:15:24 -0500 Received: from e23smtp07.au.ibm.com ([202.81.31.140]:34125) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PdM5K-0001x5-St for qemu-devel@nongnu.org; Thu, 13 Jan 2011 07:15:23 -0500 Received: from d23relay03.au.ibm.com (d23relay03.au.ibm.com [202.81.31.245]) by e23smtp07.au.ibm.com (8.14.4/8.13.1) with ESMTP id p0DCFKWF018897 for ; Thu, 13 Jan 2011 23:15:20 +1100 Received: from d23av03.au.ibm.com (d23av03.au.ibm.com [9.190.234.97]) by d23relay03.au.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p0DCFJY02515108 for ; Thu, 13 Jan 2011 23:15:19 +1100 Received: from d23av03.au.ibm.com (loopback [127.0.0.1]) by d23av03.au.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p0DCFJ4p004359 for ; Thu, 13 Jan 2011 23:15:19 +1100 From: Arun R Bharadwaj Date: Thu, 13 Jan 2011 17:45:18 +0530 Message-ID: <20110113121517.4487.67063.stgit@localhost6.localdomain6> In-Reply-To: <20110113120837.4487.95784.stgit@localhost6.localdomain6> References: <20110113120837.4487.95784.stgit@localhost6.localdomain6> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH 11/12] Threadlets: Add functionality to create private queues. List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, aliguori@linux.vnet.ibm.com, jvrao@linux.vnet.ibm.com, aneesh.kumar@linux.vnet.ibm.com This patch allows subsystems to create their own private queues with associated pools of threads. Signed-off-by: Arun R Bharadwaj --- qemu-threadlets.c | 75 ++++++++++++++++++++++++++++++++++++++--------------- qemu-threadlets.h | 4 +++ 2 files changed, 58 insertions(+), 21 deletions(-) diff --git a/qemu-threadlets.c b/qemu-threadlets.c index 42dd3d1..4df79b8 100644 --- a/qemu-threadlets.c +++ b/qemu-threadlets.c @@ -99,6 +99,25 @@ static void spawn_threadlet(ThreadletQueue *queue) } /** + * submit_work_to_queue: Submit a new task to a private queue to be + * executed asynchronously. + * @queue: Per-subsystem private queue to which the new task needs + * to be submitted. + * @work: Contains information about the task that needs to be submitted. + */ +void submit_work_to_queue(ThreadletQueue *queue, ThreadletWork *work) +{ + qemu_mutex_lock(&queue->lock); + if (queue->idle_threads == 0 && queue->cur_threads < queue->max_threads) { + spawn_threadlet(queue); + } else { + qemu_cond_signal(&queue->cond); + } + QTAILQ_INSERT_TAIL(&queue->request_list, work, node); + qemu_mutex_unlock(&queue->lock); +} + +/** * submit_work: Submit to the global queue a new task to be executed * asynchronously. * @work: Contains information about the task that needs to be submitted. @@ -106,26 +125,26 @@ static void spawn_threadlet(ThreadletQueue *queue) void submit_work(ThreadletWork *work) { if (!globalqueue_init) { - globalqueue.cur_threads = 0; - globalqueue.idle_threads = 0; - globalqueue.max_threads = MAX_GLOBAL_THREADS; - globalqueue.min_threads = MIN_GLOBAL_THREADS; - QTAILQ_INIT(&globalqueue.request_list); - qemu_mutex_init(&globalqueue.lock); - qemu_cond_init(&globalqueue.cond); - + threadlet_queue_init(&globalqueue, MAX_GLOBAL_THREADS, + MIN_GLOBAL_THREADS); globalqueue_init = 1; } - qemu_mutex_lock(&globalqueue.lock); - if (globalqueue.idle_threads == 0 && - globalqueue.cur_threads < globalqueue.max_threads) { - spawn_threadlet(&globalqueue); - } else { - qemu_cond_signal(&globalqueue.cond); - } - QTAILQ_INSERT_TAIL(&globalqueue.request_list, work, node); - qemu_mutex_unlock(&globalqueue.lock); + submit_work_to_queue(&globalqueue, work); +} + +/** + * dequeue_work_on_queue: Cancel a task queued on a Queue. + * @queue: The queue containing the task to be cancelled. + * @work: Contains the information of the task that needs to be cancelled. + */ +int dequeue_work_on_queue(ThreadletQueue *queue, ThreadletWork *work) +{ + qemu_mutex_lock(&queue->lock); + QTAILQ_REMOVE(&queue->request_list, work, node); + qemu_mutex_unlock(&queue->lock); + + return 0; } /** @@ -134,9 +153,23 @@ void submit_work(ThreadletWork *work) */ int dequeue_work(ThreadletWork *work) { - qemu_mutex_lock(&globalqueue.lock); - QTAILQ_REMOVE(&globalqueue.request_list, work, node); - qemu_mutex_unlock(&globalqueue.lock); + return dequeue_work_on_queue(&globalqueue, work); +} - return 0; +/** + * threadlet_queue_init: Initialize a threadlet queue. + * @queue: The threadlet queue to be initialized. + * @max_threads: Maximum number of threads processing the queue. + * @min_threads: Minimum number of threads processing the queue. + */ +void threadlet_queue_init(ThreadletQueue *queue, + int max_threads, int min_threads) +{ + queue->cur_threads = 0; + queue->idle_threads = 0; + queue->max_threads = max_threads; + queue->min_threads = min_threads; + QTAILQ_INIT(&queue->request_list); + qemu_mutex_init(&queue->lock); + qemu_cond_init(&queue->cond); } diff --git a/qemu-threadlets.h b/qemu-threadlets.h index 03bb86b..993d7ab 100644 --- a/qemu-threadlets.h +++ b/qemu-threadlets.h @@ -37,7 +37,11 @@ typedef struct ThreadletWork void (*func)(struct ThreadletWork *work); } ThreadletWork; +void submit_work_to_queue(ThreadletQueue *queue, ThreadletWork *work); void submit_work(ThreadletWork *work); +int dequeue_work_on_queue(ThreadletQueue *queue, ThreadletWork *work); int dequeue_work(ThreadletWork *work); void threadlet_init(void); +void threadlet_queue_init(ThreadletQueue *queue, int max_threads, + int min_threads); #endif