aboutsummaryrefslogtreecommitdiff
path: root/hw/ide
diff options
context:
space:
mode:
authorAnthony Liguori <aliguori@us.ibm.com>2011-04-07 09:56:09 -0500
committerAnthony Liguori <aliguori@us.ibm.com>2011-04-07 09:56:09 -0500
commitf124a410ea12a644c3577c5303846c37baa5e819 (patch)
treeb1deb798b7ff6dc9ea95968f4aa5a96c8358ec61 /hw/ide
parente54f17713f638189e79dac5ba0aa0ce606788777 (diff)
parent52c050236eaa4f0b5e1d160cd66dc18106445c4d (diff)
Merge remote branch 'kwolf/for-anthony' into staging
Diffstat (limited to 'hw/ide')
-rw-r--r--hw/ide/core.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/hw/ide/core.c b/hw/ide/core.c
index 007a4ee0c9..c11d457b7a 100644
--- a/hw/ide/core.c
+++ b/hw/ide/core.c
@@ -2826,3 +2826,17 @@ const VMStateDescription vmstate_ide_bus = {
VMSTATE_END_OF_LIST()
}
};
+
+void ide_drive_get(DriveInfo **hd, int max_bus)
+{
+ int i;
+
+ if (drive_get_max_bus(IF_IDE) >= max_bus) {
+ fprintf(stderr, "qemu: too many IDE bus: %d\n", max_bus);
+ exit(1);
+ }
+
+ for(i = 0; i < max_bus * MAX_IDE_DEVS; i++) {
+ hd[i] = drive_get(IF_IDE, i / MAX_IDE_DEVS, i % MAX_IDE_DEVS);
+ }
+}