From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:51535) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qiq6b-000512-Nx for qemu-devel@nongnu.org; Mon, 18 Jul 2011 11:51:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qiq6X-0002hZ-D6 for qemu-devel@nongnu.org; Mon, 18 Jul 2011 11:51:37 -0400 Received: from mx1.redhat.com ([209.132.183.28]:16930) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qiq6W-0002hG-Rp for qemu-devel@nongnu.org; Mon, 18 Jul 2011 11:51:33 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p6IFpWJt031723 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 18 Jul 2011 11:51:32 -0400 From: Gerd Hoffmann Date: Mon, 18 Jul 2011 17:51:22 +0200 Message-Id: <1311004288-10970-4-git-send-email-kraxel@redhat.com> In-Reply-To: <1311004288-10970-1-git-send-email-kraxel@redhat.com> References: <1311004288-10970-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 3/9] move QEMUSGList typedef List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Move the QEMUSGList typedef to qemu-common so it can easily be used. The actual struct definition stays in dma.h. Signed-off-by: Gerd Hoffmann --- dma.h | 4 ++-- qemu-common.h | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/dma.h b/dma.h index 3d8324b..a6db5ba 100644 --- a/dma.h +++ b/dma.h @@ -20,12 +20,12 @@ typedef struct { target_phys_addr_t len; } ScatterGatherEntry; -typedef struct { +struct QEMUSGList { ScatterGatherEntry *sg; int nsg; int nalloc; target_phys_addr_t size; -} QEMUSGList; +}; void qemu_sglist_init(QEMUSGList *qsg, int alloc_hint); void qemu_sglist_add(QEMUSGList *qsg, target_phys_addr_t base, diff --git a/qemu-common.h b/qemu-common.h index abd7a75..565b4b6 100644 --- a/qemu-common.h +++ b/qemu-common.h @@ -284,6 +284,7 @@ typedef struct I2SCodec I2SCodec; typedef struct SSIBus SSIBus; typedef struct EventNotifier EventNotifier; typedef struct VirtIODevice VirtIODevice; +typedef struct QEMUSGList QEMUSGList; typedef uint64_t pcibus_t; -- 1.7.1