summaryrefslogtreecommitdiff
path: root/stubs/pci-drive-hot-add.c
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2013-02-04 17:20:47 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2013-03-01 13:57:13 +0100
commit1559e0d4b54d1b0744983b57da893617ceae8b94 (patch)
treebc23dde4149977b956df3d7bf1eee9ee69fa510f /stubs/pci-drive-hot-add.c
parentb4a42f81383d60900aae09513f42eb857a5a7c7c (diff)
downloadqemu-1559e0d4b54d1b0744983b57da893617ceae8b94.tar.gz
hw: move device-hotplug.o to toplevel, compile it once
The situation with device-hotplug.c is similar to qdev-monitor.c. Add a stub for pci_drive_hot_add, so that it can be compiled once, and move it out of hw/. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'stubs/pci-drive-hot-add.c')
-rw-r--r--stubs/pci-drive-hot-add.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/stubs/pci-drive-hot-add.c b/stubs/pci-drive-hot-add.c
new file mode 100644
index 0000000000..1d98145802
--- /dev/null
+++ b/stubs/pci-drive-hot-add.c
@@ -0,0 +1,10 @@
+#include <monitor/monitor.h>
+#include <sysemu/sysemu.h>
+#include <sysemu/blockdev.h>
+
+int pci_drive_hot_add(Monitor *mon, const QDict *qdict, DriveInfo *dinfo)
+{
+ /* On non-x86 we don't do PCI hotplug */
+ monitor_printf(mon, "Can't hot-add drive to type %d\n", dinfo->type);
+ return -1;
+}