From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH v2 5/5] block: use QSLIST for the AIO free list
Date: Fri, 13 Jan 2012 17:34:05 +0100 [thread overview]
Message-ID: <1326472445-25966-6-git-send-email-pbonzini@redhat.com> (raw)
In-Reply-To: <1326472445-25966-1-git-send-email-pbonzini@redhat.com>
QSLIST is equivalent to an open-coded free list, use it.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
block.c | 9 ++++-----
block_int.h | 4 ++--
2 files changed, 6 insertions(+), 7 deletions(-)
diff --git a/block.c b/block.c
index 3f072f6..acb54b1 100644
--- a/block.c
+++ b/block.c
@@ -3242,9 +3242,9 @@ void *qemu_aio_get(AIOPool *pool, BlockDriverState *bs,
{
BlockDriverAIOCB *acb;
- if (pool->free_aiocb) {
- acb = pool->free_aiocb;
- pool->free_aiocb = acb->next;
+ if (!QSLIST_EMPTY(pool->free_aiocb)) {
+ acb = QSLIST_FIRST(pool->free_aiocb);
+ QSLIST_REMOVE_HEAD(pool->free_aiocb, next);
} else {
acb = g_malloc0(pool->aiocb_size);
acb->pool = pool;
@@ -3259,8 +3259,7 @@ void qemu_aio_release(void *p)
{
BlockDriverAIOCB *acb = (BlockDriverAIOCB *)p;
AIOPool *pool = acb->pool;
- acb->next = pool->free_aiocb;
- pool->free_aiocb = acb;
+ QSLIST_INSERT_HEAD(pool->free_aiocb, acb, next);
}
/**************************************************************/
diff --git a/block_int.h b/block_int.h
index 311bd2a..c592e54 100644
--- a/block_int.h
+++ b/block_int.h
@@ -56,7 +56,7 @@ typedef struct BdrvTrackedRequest BdrvTrackedRequest;
typedef struct AIOPool {
void (*cancel)(BlockDriverAIOCB *acb);
int aiocb_size;
- BlockDriverAIOCB *free_aiocb;
+ QSLIST_HEAD(, BlockDriverAIOCB) *free_aiocb;
} AIOPool;
typedef struct BlockIOLimit {
@@ -268,7 +268,7 @@ struct BlockDriverAIOCB {
BlockDriverState *bs;
BlockDriverCompletionFunc *cb;
void *opaque;
- BlockDriverAIOCB *next;
+ QSLIST_ENTRY(BlockDriverAIOCB) next;
};
void get_tmp_filename(char *filename, int size);
--
1.7.7.1
next prev parent reply other threads:[~2012-01-13 16:34 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-13 16:34 [Qemu-devel] [PATCH v2 0/5] qemu-queue cleanups Paolo Bonzini
2012-01-13 16:34 ` [Qemu-devel] [PATCH v2 1/5] notifier: switch to QLIST Paolo Bonzini
2012-01-13 16:34 ` [Qemu-devel] [PATCH v2 2/5] qemu-queue: add QSLIST Paolo Bonzini
2012-01-13 16:34 ` [Qemu-devel] [PATCH v2 3/5] qemu-queue: drop QCIRCLEQ Paolo Bonzini
2012-01-13 16:44 ` Peter Maydell
2012-01-13 17:05 ` Paolo Bonzini
2012-01-13 19:11 ` Paolo Bonzini
2012-01-13 16:34 ` [Qemu-devel] [PATCH v2 4/5] coroutine: switch to QSLIST Paolo Bonzini
2012-01-13 16:34 ` Paolo Bonzini [this message]
2012-02-17 16:03 ` [Qemu-devel] [PATCH v2 5/5] block: use QSLIST for the AIO free list Anthony Liguori
2012-02-15 9:05 ` [Qemu-devel] [PATCH v2 0/5] qemu-queue cleanups Paolo Bonzini
2012-02-17 18:15 ` Anthony Liguori
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1326472445-25966-6-git-send-email-pbonzini@redhat.com \
--to=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).