]> git.proxmox.com Git - qemu.git/commit
consolidate qemu_iovec_memset{,_skip}() into single function and use existing iov_mem...
authorMichael Tokarev <mjt@tls.msk.ru>
Sat, 10 Mar 2012 12:54:23 +0000 (16:54 +0400)
committerMichael Tokarev <mjt@tls.msk.ru>
Mon, 11 Jun 2012 19:07:44 +0000 (23:07 +0400)
commit3d9b49254f893f2a3739400e536de25db1cdc5f9
tree3d08dfabe658baba0b89a5ba675d903c3cdbbcb6
parent2278a69e7020d86a8c73a28474e7709d3e7d5081
consolidate qemu_iovec_memset{,_skip}() into single function and use existing iov_memset()

This patch combines two functions into one, and replaces
the implementation with already existing iov_memset() from
iov.c.

The new prototype of qemu_iovec_memset():
  size_t qemu_iovec_memset(qiov, size_t offset, int fillc, size_t bytes)
It is different from former qemu_iovec_memset_skip(), and
I want to make other functions to be consistent with it
too: first how much to skip, second what, and 3rd how many
of it.  It also returns actual number of bytes filled in,
which may be less than the requested `bytes' if qiov is
smaller than offset+bytes, in the same way iov_memset()
does.

While at it, use utility function iov_memset() from
iov.h in posix-aio-compat.c, where qiov was used.

Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Makefile
Makefile.objs
block/qcow2.c
block/qed.c
cutils.c
linux-aio.c
posix-aio-compat.c
qemu-common.h