From: Gerd Hoffmann Date: Tue, 12 Jul 2011 11:36:23 +0000 (+0200) Subject: move QEMUSGList typedef X-Git-Tag: qemu-xen-4.3.0-rc1~2628^2~5^2~12 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=d35bf9ade5293171f13bc5fd1460920a258e3e39;p=qemu-upstream-4.4-testing.git move QEMUSGList typedef 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 --- diff --git a/dma.h b/dma.h index 3d8324bb5..a6db5bacb 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 1e3c66511..c7064d362 100644 --- a/qemu-common.h +++ b/qemu-common.h @@ -270,6 +270,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;