@@ -1415,6 +1415,20 @@ STEXI
@findex rdrive_add
Add drive to remote PCI storage controller.
ETEXI
+
+ {
+ .name = "rdrive_del",
+ .args_type = "rdev_id:s,id:s",
+ .params = "rdev_id id",
+ .help = "remove drive from remote PCI storage controller",
+ .cmd = hmp_rdrive_del,
+ },
+
+STEXI
+@item rdrive_del
+@findex rdrive_del
+Remove drive from remote PCI storage controller
+ETEXI
#endif
{
@@ -42,6 +42,7 @@
#include "qapi/error.h"
#include "io/proxy-link.h"
#include "sysemu/sysemu.h"
+#include "sysemu/blockdev.h"
/*
* TODO: Is there a callback where the allocated memory for QMP could be free'd
@@ -246,3 +247,39 @@ void hmp_rdrive_add(Monitor *mon, const QDict *qdict)
g_free(data);
}
+void hmp_rdrive_del(Monitor *mon, const QDict *qdict)
+{
+ PCMachineState *pcms = PC_MACHINE(current_machine);
+ Error *local_err = NULL;
+ ProcMsg msg = {0};
+ PCIProxyDev *pdev = NULL;
+ const char *id;
+ int wait;
+
+ pdev = get_proxy_device((QDict *)qdict, &local_err);
+ if (local_err) {
+ monitor_printf(mon, "rdrive_del error: %s\n",
+ error_get_pretty(local_err));
+ error_free(local_err);
+ return;
+ }
+
+ id = qdict_get_str(qdict, "id");
+
+ wait = GET_REMOTE_WAIT;
+
+ msg.cmd = DRIVE_DEL;
+ msg.bytestream = 1;
+ msg.size = strlen(id);
+ msg.data2 = (uint8_t *)id;
+ msg.num_fds = 1;
+ msg.fds[0] = wait;
+
+ proxy_proc_send(pdev->proxy_link, &msg);
+ (void)wait_for_remote(wait);
+ PUT_REMOTE_WAIT(wait);
+
+ /* TODO: Only on success */
+ (void)g_hash_table_remove(pcms->remote_devs, (gpointer)id);
+}
+
@@ -63,6 +63,7 @@ typedef struct ProxyLinkState ProxyLinkState;
* DEVICE_ADD QMP/HMP command to hotplug device
* DEVICE_DEL QMP/HMP command to hot-unplug device
* DRIVE_ADD HMP command to hotplug drive
+ * DRIVE_DEL HMP command to hot-unplug drive
*
*/
typedef enum {
@@ -78,6 +79,7 @@ typedef enum {
DEVICE_ADD,
DEVICE_DEL,
DRIVE_ADD,
+ DRIVE_DEL,
PROXY_PING,
MAX,
} proc_cmd_t;
@@ -61,4 +61,5 @@ DriveInfo *drive_new(QemuOpts *arg, BlockInterfaceType block_default_type,
void hmp_commit(Monitor *mon, const QDict *qdict);
void hmp_drive_del(Monitor *mon, const QDict *qdict);
+void hmp_rdrive_del(Monitor *mon, const QDict *qdict);
#endif
@@ -257,6 +257,21 @@ static void process_drive_add_msg(ProcMsg *msg)
PUT_REMOTE_WAIT(wait);
}
+static void process_drive_del_msg(ProcMsg *msg)
+{
+ const char *idstr = (const char *)msg->data2;
+ int wait = msg->fds[0];
+ QDict *qdict = qdict_new();
+
+ qdict_put_str(qdict, "id", idstr);
+
+ hmp_drive_del(NULL, qdict);
+
+ notify_proxy(wait, 1);
+
+ PUT_REMOTE_WAIT(wait);
+}
+
static int init_drive(QDict *rqdict, Error **errp)
{
QemuOpts *opts;
@@ -445,6 +460,9 @@ static void process_msg(GIOCondition cond)
case DRIVE_ADD:
process_drive_add_msg(msg);
break;
+ case DRIVE_DEL:
+ process_drive_del_msg(msg);
+ break;
case PROXY_PING:
wait = msg->fds[0];
notify_proxy(wait, (uint32_t)getpid());