diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2011-07-22 09:23:43 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-07-22 09:23:43 -0500 |
commit | bf1cd9b4f54c8f630291dcd057c3aa293a510bcb (patch) | |
tree | f348eb9684fcc99b35797e47e12903881c8ede8b /iov.h | |
parent | d1afc48b7cfdb4490f322d5d82a2aae6d545ec06 (diff) | |
parent | aaf55b4795d95d87353a08710f237f88d81a3c35 (diff) |
Merge remote-tracking branch 'kwolf/for-anthony' into staging
Diffstat (limited to 'iov.h')
-rw-r--r-- | iov.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -12,8 +12,8 @@ #include "qemu-common.h" -size_t iov_from_buf(struct iovec *iov, unsigned int iovcnt, - const void *buf, size_t size); -size_t iov_to_buf(const struct iovec *iov, const unsigned int iovcnt, - void *buf, size_t offset, size_t size); -size_t iov_size(const struct iovec *iov, const unsigned int iovcnt); +size_t iov_from_buf(struct iovec *iov, unsigned int iov_cnt, + const void *buf, size_t iov_off, size_t size); +size_t iov_to_buf(const struct iovec *iov, const unsigned int iov_cnt, + void *buf, size_t iov_off, size_t size); +size_t iov_size(const struct iovec *iov, const unsigned int iov_cnt); |