]> git.proxmox.com Git - qemu.git/blobdiff - dma.h
dma-helpers: make QEMUSGList target independent
[qemu.git] / dma.h
diff --git a/dma.h b/dma.h
index a13209d7eb55531d7801acc32dbaa6f5e1d5420a..d50019b75bf3b91d1edd2e4510e660c0fe0fa33e 100644 (file)
--- a/dma.h
+++ b/dma.h
 
 typedef struct ScatterGatherEntry ScatterGatherEntry;
 
+struct QEMUSGList {
+    ScatterGatherEntry *sg;
+    int nsg;
+    int nalloc;
+    size_t size;
+};
+
 #if defined(TARGET_PHYS_ADDR_BITS)
 typedef target_phys_addr_t dma_addr_t;
 
@@ -32,13 +39,6 @@ struct ScatterGatherEntry {
     dma_addr_t len;
 };
 
-struct QEMUSGList {
-    ScatterGatherEntry *sg;
-    int nsg;
-    int nalloc;
-    dma_addr_t size;
-};
-
 void qemu_sglist_init(QEMUSGList *qsg, int alloc_hint);
 void qemu_sglist_add(QEMUSGList *qsg, dma_addr_t base, dma_addr_t len);
 void qemu_sglist_destroy(QEMUSGList *qsg);