usb-bot: hotplug support
[qemu/kevin.git] / fsdev / 9p-marshal.c
blobf56ef0e60c0f223b47d935bb4dfe0048df7158c6
1 /*
2 * 9p backend
4 * Copyright IBM, Corp. 2010
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
14 #include "qemu/osdep.h"
15 #include <glib/gprintf.h>
16 #include <dirent.h>
17 #include <utime.h>
18 #include <sys/uio.h>
20 #include "9p-marshal.h"
22 void v9fs_string_free(V9fsString *str)
24 g_free(str->data);
25 str->data = NULL;
26 str->size = 0;
29 void v9fs_string_null(V9fsString *str)
31 v9fs_string_free(str);
34 void GCC_FMT_ATTR(2, 3)
35 v9fs_string_sprintf(V9fsString *str, const char *fmt, ...)
37 va_list ap;
39 v9fs_string_free(str);
41 va_start(ap, fmt);
42 str->size = g_vasprintf(&str->data, fmt, ap);
43 va_end(ap);
46 void v9fs_string_copy(V9fsString *lhs, V9fsString *rhs)
48 v9fs_string_free(lhs);
49 v9fs_string_sprintf(lhs, "%s", rhs->data);