blob: 94d2f7828433890d133d37fff8d2b1122450d267 [file] [log] [blame]
Amit Shahe4d56392010-04-27 18:04:05 +05301/*
2 * Helpers for getting linearized buffers from iov / filling buffers into iovs
3 *
4 * Copyright (C) 2010 Red Hat, Inc.
5 *
6 * Author(s):
7 * Amit Shah <amit.shah@redhat.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 */
12
13#include "qemu-common.h"
14
Hannes Reinecke348e7b82011-07-11 15:02:23 +020015size_t iov_from_buf(struct iovec *iov, unsigned int iov_cnt,
16 const void *buf, size_t iov_off, size_t size);
17size_t iov_to_buf(const struct iovec *iov, const unsigned int iov_cnt,
18 void *buf, size_t iov_off, size_t size);
19size_t iov_size(const struct iovec *iov, const unsigned int iov_cnt);
Gerd Hoffmann8d150282011-07-13 15:16:08 +020020size_t iov_clear(const struct iovec *iov, const unsigned int iov_cnt,
21 size_t iov_off, size_t size);
Gerd Hoffmann3a1dca92011-07-12 13:35:10 +020022void iov_hexdump(const struct iovec *iov, const unsigned int iov_cnt,
23 FILE *fp, const char *prefix, size_t limit);