diff options
| author | Amit Shah | 2010-04-27 14:34:05 +0200 |
|---|---|---|
| committer | Anthony Liguori | 2010-04-28 15:58:22 +0200 |
| commit | e4d5639dbb6181ebbfdb554f2594721b2d63882b (patch) | |
| tree | 1ad23eabc520022e909e73bbc3affbdfca4cc25f /Makefile | |
| parent | virtio-serial: Send out guest data to ports only if port is opened (diff) | |
| download | qemu-e4d5639dbb6181ebbfdb554f2594721b2d63882b.tar.gz qemu-e4d5639dbb6181ebbfdb554f2594721b2d63882b.tar.xz qemu-e4d5639dbb6181ebbfdb554f2594721b2d63882b.zip | |
iov: Introduce a new file for helpers around iovs, add iov_from_buf()
The virtio-net code uses iov_fill() which fills an iov from a linear
buffer. The virtio-serial-bus code does something similar in an
open-coded function.
Create a new iov.c file that has iov_from_buf().
Convert virtio-net and virtio-serial-bus over to use this functionality.
virtio-net used ints to hold sizes, the new function is going to use
size_t types.
Later commits will add the opposite functionality -- going from an iov
to a linear buffer.
Signed-off-by: Amit Shah <amit.shah@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -124,6 +124,8 @@ curses.o: curses.c keymaps.h curses_keys.h bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS) +iov.o: iov.c iov.h + ###################################################################### qemu-img.o: qemu-img-cmds.h |
