From: Anthony Liguori <anthony@codemonkey.ws>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [6902] add qemu_iovec_init_external (Christoph Hellwig)
Date: Sat, 28 Mar 2009 17:46:10 +0000 [thread overview]
Message-ID: <E1Lncbi-0008J3-Os@cvs.savannah.gnu.org> (raw)
Revision: 6902
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6902
Author: aliguori
Date: 2009-03-28 17:46:10 +0000 (Sat, 28 Mar 2009)
Log Message:
-----------
add qemu_iovec_init_external (Christoph Hellwig)
Allow to initialize a QEMUIOVector from an externally allocated iovec.
qiov->nalloc is initialized to -1 to indicate external storage for qiov->iov
and all functions dealing with memory management assert on the iovec beeing
an internally managed first.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Modified Paths:
--------------
trunk/cutils.c
trunk/qemu-common.h
Modified: trunk/cutils.c
===================================================================
--- trunk/cutils.c 2009-03-28 17:29:07 UTC (rev 6901)
+++ trunk/cutils.c 2009-03-28 17:46:10 UTC (rev 6902)
@@ -23,6 +23,7 @@
*/
#include "qemu-common.h"
#include "host-utils.h"
+#include <assert.h>
void pstrcpy(char *buf, int buf_size, const char *str)
{
@@ -112,8 +113,22 @@
qiov->size = 0;
}
+void qemu_iovec_init_external(QEMUIOVector *qiov, struct iovec *iov, int niov)
+{
+ int i;
+
+ qiov->iov = iov;
+ qiov->niov = niov;
+ qiov->nalloc = -1;
+ qiov->size = 0;
+ for (i = 0; i < niov; i++)
+ qiov->size += iov[i].iov_len;
+}
+
void qemu_iovec_add(QEMUIOVector *qiov, void *base, size_t len)
{
+ assert(qiov->nalloc != -1);
+
if (qiov->niov == qiov->nalloc) {
qiov->nalloc = 2 * qiov->nalloc + 1;
qiov->iov = qemu_realloc(qiov->iov, qiov->nalloc * sizeof(struct iovec));
@@ -126,11 +141,15 @@
void qemu_iovec_destroy(QEMUIOVector *qiov)
{
+ assert(qiov->nalloc != -1);
+
qemu_free(qiov->iov);
}
void qemu_iovec_reset(QEMUIOVector *qiov)
{
+ assert(qiov->nalloc != -1);
+
qiov->niov = 0;
qiov->size = 0;
}
Modified: trunk/qemu-common.h
===================================================================
--- trunk/qemu-common.h 2009-03-28 17:29:07 UTC (rev 6901)
+++ trunk/qemu-common.h 2009-03-28 17:46:10 UTC (rev 6902)
@@ -194,6 +194,7 @@
} QEMUIOVector;
void qemu_iovec_init(QEMUIOVector *qiov, int alloc_hint);
+void qemu_iovec_init_external(QEMUIOVector *qiov, struct iovec *iov, int niov);
void qemu_iovec_add(QEMUIOVector *qiov, void *base, size_t len);
void qemu_iovec_destroy(QEMUIOVector *qiov);
void qemu_iovec_reset(QEMUIOVector *qiov);
reply other threads:[~2009-03-28 17:46 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=E1Lncbi-0008J3-Os@cvs.savannah.gnu.org \
--to=anthony@codemonkey.ws \
--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).