diff options
author | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-02-05 21:23:54 +0000 |
---|---|---|
committer | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-02-05 21:23:54 +0000 |
commit | be959463afd3e257611d6b6ab98d24c0c94d4e3d (patch) | |
tree | 71bba16628c40da3af95a8a05d9470fa26c8bd6e /cutils.c | |
parent | Add a scatter-gather list type and accessors (Avi Kivity) (diff) | |
download | qemu-kvm-be959463afd3e257611d6b6ab98d24c0c94d4e3d.tar.gz qemu-kvm-be959463afd3e257611d6b6ab98d24c0c94d4e3d.tar.bz2 qemu-kvm-be959463afd3e257611d6b6ab98d24c0c94d4e3d.zip |
Add qemu_iovec_reset() (Avi Kivity)
Add a helper to zero out an existing iovec. Removes the need to deallocate
and reallocate it.
Signed-off-by: Avi Kivity <avi@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6523 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'cutils.c')
-rw-r--r-- | cutils.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -129,6 +129,12 @@ void qemu_iovec_destroy(QEMUIOVector *qiov) qemu_free(qiov->iov); } +void qemu_iovec_reset(QEMUIOVector *qiov) +{ + qiov->niov = 0; + qiov->size = 0; +} + void qemu_iovec_to_buffer(QEMUIOVector *qiov, void *buf) { uint8_t *p = (uint8_t *)buf; |