From patchwork Fri Apr 9 11:43:11 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Aneesh Kumar K.V" X-Patchwork-Id: 49829 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id D04D8B7D00 for ; Fri, 9 Apr 2010 22:08:50 +1000 (EST) Received: from localhost ([127.0.0.1]:50754 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O0Cum-0006u9-EK for incoming@patchwork.ozlabs.org; Fri, 09 Apr 2010 08:02:24 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O0Ccz-0001iQ-7M for qemu-devel@nongnu.org; Fri, 09 Apr 2010 07:44:01 -0400 Received: from [140.186.70.92] (port=56476 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O0Cck-0001cG-On for qemu-devel@nongnu.org; Fri, 09 Apr 2010 07:44:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O0Cce-00085M-RL for qemu-devel@nongnu.org; Fri, 09 Apr 2010 07:43:46 -0400 Received: from e28smtp05.in.ibm.com ([122.248.162.5]:44727) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O0Ccd-00084A-Fs for qemu-devel@nongnu.org; Fri, 09 Apr 2010 07:43:40 -0400 Received: from d28relay05.in.ibm.com (d28relay05.in.ibm.com [9.184.220.62]) by e28smtp05.in.ibm.com (8.14.3/8.13.1) with ESMTP id o39BhZIx002818 for ; Fri, 9 Apr 2010 17:13:35 +0530 Received: from d28av01.in.ibm.com (d28av01.in.ibm.com [9.184.220.63]) by d28relay05.in.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id o39BhZad3436796 for ; Fri, 9 Apr 2010 17:13:35 +0530 Received: from d28av01.in.ibm.com (loopback [127.0.0.1]) by d28av01.in.ibm.com (8.14.3/8.13.1/NCO v10.0 AVout) with ESMTP id o39BhZYh001744 for ; Fri, 9 Apr 2010 17:13:35 +0530 Received: from skywalker.in.ibm.com ([9.124.221.5]) by d28av01.in.ibm.com (8.14.3/8.13.1/NCO v10.0 AVin) with ESMTP id o39BhQHn001478; Fri, 9 Apr 2010 17:13:34 +0530 From: "Aneesh Kumar K.V" To: qemu-devel@nongnu.org Date: Fri, 9 Apr 2010 17:13:11 +0530 Message-Id: <1270813404-23004-9-git-send-email-aneesh.kumar@linux.vnet.ibm.com> X-Mailer: git-send-email 1.7.0.4.360.g11766c In-Reply-To: <1270813404-23004-1-git-send-email-aneesh.kumar@linux.vnet.ibm.com> References: <1270813404-23004-1-git-send-email-aneesh.kumar@linux.vnet.ibm.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) Cc: ericvh@gmail.com, aliguori@us.ibm.com, aneesh.kumar@linux.vnet.ibm.com Subject: [Qemu-devel] [PATCH -V4 08/21] virtio-9p: Add sg helper functions X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Anthony Liguori Add scatter-gather helper functions. Signed-off-by: Anthony Liguori Signed-off-by: Aneesh Kumar K.V --- hw/virtio-9p.c | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 53 insertions(+), 0 deletions(-) diff --git a/hw/virtio-9p.c b/hw/virtio-9p.c index 4b3ce2f..5dab1d3 100644 --- a/hw/virtio-9p.c +++ b/hw/virtio-9p.c @@ -764,6 +764,56 @@ static int stat_to_v9stat(V9fsState *s, V9fsString *name, return 0; } +static struct iovec *adjust_sg(struct iovec *sg, int len, int *iovcnt) +{ + while (len && *iovcnt) { + if (len < sg->iov_len) { + sg->iov_len -= len; + sg->iov_base += len; + len = 0; + } else { + len -= sg->iov_len; + sg++; + *iovcnt -= 1; + } + } + + return sg; +} + +static struct iovec *cap_sg(struct iovec *sg, int cap, int *cnt) +{ + int i; + int total = 0; + + for (i = 0; i < *cnt; i++) { + if ((total + sg[i].iov_len) > cap) { + sg[i].iov_len -= ((total + sg[i].iov_len) - cap); + i++; + break; + } + total += sg[i].iov_len; + } + + *cnt = i; + + return sg; +} + +static void print_sg(struct iovec *sg, int cnt) +{ + int i; + + printf("sg[%d]: {", cnt); + for (i = 0; i < cnt; i++) { + if (i) { + printf(", "); + } + printf("(%p, %zd)", sg[i].iov_base, sg[i].iov_len); + } + printf("}\n"); +} + static void v9fs_dummy(V9fsState *s, V9fsPDU *pdu) { /* Note: The following have been added to prevent GCC from complaining @@ -788,6 +838,9 @@ static void v9fs_dummy(V9fsState *s, V9fsPDU *pdu) (void) donttouch_stat; (void) v9fs_stat_free; (void) stat_to_v9stat; + (void) adjust_sg; + (void) cap_sg; + (void) print_sg; } static void v9fs_version(V9fsState *s, V9fsPDU *pdu)