From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:56178) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QTduu-0000C6-Ry for qemu-devel@nongnu.org; Mon, 06 Jun 2011 13:48:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QTdus-0003eX-QF for qemu-devel@nongnu.org; Mon, 06 Jun 2011 13:48:44 -0400 Received: from e23smtp05.au.ibm.com ([202.81.31.147]:41851) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QTdus-0003eE-5h for qemu-devel@nongnu.org; Mon, 06 Jun 2011 13:48:42 -0400 Received: from d23relay04.au.ibm.com (d23relay04.au.ibm.com [202.81.31.246]) by e23smtp05.au.ibm.com (8.14.4/8.13.1) with ESMTP id p56HgHna025914 for ; Tue, 7 Jun 2011 03:42:17 +1000 Received: from d23av04.au.ibm.com (d23av04.au.ibm.com [9.190.235.139]) by d23relay04.au.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p56Hlh1l634882 for ; Tue, 7 Jun 2011 03:47:46 +1000 Received: from d23av04.au.ibm.com (loopback [127.0.0.1]) by d23av04.au.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p56HmNCr002442 for ; Tue, 7 Jun 2011 03:48:23 +1000 From: "Aneesh Kumar K.V" Date: Mon, 6 Jun 2011 23:18:14 +0530 Message-Id: <1307382497-3737-1-git-send-email-aneesh.kumar@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH 1/4] hw/9pfs: Make v9fs_string* functions non-static List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com, "Aneesh Kumar K.V" We will use them later in other files Signed-off-by: Aneesh Kumar K.V --- hw/9pfs/virtio-9p.c | 10 +++++----- hw/9pfs/virtio-9p.h | 5 +++++ 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/hw/9pfs/virtio-9p.c b/hw/9pfs/virtio-9p.c index 092c9bc..6b992f8 100644 --- a/hw/9pfs/virtio-9p.c +++ b/hw/9pfs/virtio-9p.c @@ -96,20 +96,20 @@ static int get_dotl_openflags(V9fsState *s, int oflags) return flags; } -static void v9fs_string_init(V9fsString *str) +void v9fs_string_init(V9fsString *str) { str->data = NULL; str->size = 0; } -static void v9fs_string_free(V9fsString *str) +void v9fs_string_free(V9fsString *str) { qemu_free(str->data); str->data = NULL; str->size = 0; } -static void v9fs_string_null(V9fsString *str) +void v9fs_string_null(V9fsString *str) { v9fs_string_free(str); } @@ -208,7 +208,7 @@ alloc_print: return vsprintf(*strp, fmt, ap); } -static void GCC_FMT_ATTR(2, 3) +void GCC_FMT_ATTR(2, 3) v9fs_string_sprintf(V9fsString *str, const char *fmt, ...) { va_list ap; @@ -224,7 +224,7 @@ v9fs_string_sprintf(V9fsString *str, const char *fmt, ...) str->size = err; } -static void v9fs_string_copy(V9fsString *lhs, V9fsString *rhs) +void v9fs_string_copy(V9fsString *lhs, V9fsString *rhs) { v9fs_string_free(lhs); v9fs_string_sprintf(lhs, "%s", rhs->data); diff --git a/hw/9pfs/virtio-9p.h b/hw/9pfs/virtio-9p.h index 7291a9c..1f5d283 100644 --- a/hw/9pfs/virtio-9p.h +++ b/hw/9pfs/virtio-9p.h @@ -383,4 +383,9 @@ static inline size_t do_pdu_unpack(void *dst, struct iovec *sg, int sg_count, extern void handle_9p_output(VirtIODevice *vdev, VirtQueue *vq); extern void virtio_9p_set_fd_limit(void); extern void v9fs_reclaim_fd(V9fsState *s); +extern void v9fs_string_init(V9fsString *str); +extern void v9fs_string_free(V9fsString *str); +extern void v9fs_string_null(V9fsString *str); +extern void v9fs_string_sprintf(V9fsString *str, const char *fmt, ...); +extern void v9fs_string_copy(V9fsString *lhs, V9fsString *rhs); #endif -- 1.7.4.1