提交 d35bf9ad 编写于 作者: G Gerd Hoffmann

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: NGerd Hoffmann <kraxel@redhat.com>
上级 8d15028e
...@@ -20,12 +20,12 @@ typedef struct { ...@@ -20,12 +20,12 @@ typedef struct {
target_phys_addr_t len; target_phys_addr_t len;
} ScatterGatherEntry; } ScatterGatherEntry;
typedef struct { struct QEMUSGList {
ScatterGatherEntry *sg; ScatterGatherEntry *sg;
int nsg; int nsg;
int nalloc; int nalloc;
target_phys_addr_t size; target_phys_addr_t size;
} QEMUSGList; };
void qemu_sglist_init(QEMUSGList *qsg, int alloc_hint); void qemu_sglist_init(QEMUSGList *qsg, int alloc_hint);
void qemu_sglist_add(QEMUSGList *qsg, target_phys_addr_t base, void qemu_sglist_add(QEMUSGList *qsg, target_phys_addr_t base,
......
...@@ -270,6 +270,7 @@ typedef struct I2SCodec I2SCodec; ...@@ -270,6 +270,7 @@ typedef struct I2SCodec I2SCodec;
typedef struct SSIBus SSIBus; typedef struct SSIBus SSIBus;
typedef struct EventNotifier EventNotifier; typedef struct EventNotifier EventNotifier;
typedef struct VirtIODevice VirtIODevice; typedef struct VirtIODevice VirtIODevice;
typedef struct QEMUSGList QEMUSGList;
typedef uint64_t pcibus_t; typedef uint64_t pcibus_t;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册