1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-04-01 20:05:19 +00:00

qemu: monitor: Add monitor backend for 'blockdev-set-active'

The command will be used to re-activate block nodes after migration when
we're leaving the VM paused so that blockjobs can be used.

As the 'node-name' field is optional the 'qemumonitorjsontest' case
tests both variants.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Jiri Denemark <jdenemar@redhat.com>
This commit is contained in:
Peter Krempa 2025-02-10 17:51:31 +01:00
parent b402e167b6
commit d8f9cfb5e4
5 changed files with 83 additions and 0 deletions

View File

@ -4552,3 +4552,24 @@ qemuMonitorDisplayReload(qemuMonitor *mon,
return qemuMonitorJSONDisplayReload(mon, type, tlsCerts);
}
/**
* qemuMonitorBlockdevSetActive:
* @mon: monitor object
* @nodename: optional nodename to (de)activate
* @active: requested state
*
* Activate or deactivate @nodename based on @active. If @nodename is NULL,
* qemu will act on all block nodes.
*/
int
qemuMonitorBlockdevSetActive(qemuMonitor *mon,
const char *nodename,
bool active)
{
QEMU_CHECK_MONITOR(mon);
VIR_DEBUG("nodename='%s', active='%d'", NULLSTR(nodename), active);
return qemuMonitorJSONBlockdevSetActive(mon, nodename, active);
}

View File

@ -1651,3 +1651,8 @@ qemuMonitorSnapshotDelete(qemuMonitor *mon,
const char *jobname,
const char *snapshotname,
const char **disks);
int
qemuMonitorBlockdevSetActive(qemuMonitor *mon,
const char *nodename,
bool active);

View File

@ -8883,3 +8883,24 @@ qemuMonitorJSONSnapshotDelete(qemuMonitor *mon,
return qemuMonitorJSONCheckError(cmd, reply);
}
int
qemuMonitorJSONBlockdevSetActive(qemuMonitor *mon,
const char *nodename,
bool active)
{
g_autoptr(virJSONValue) cmd = NULL;
g_autoptr(virJSONValue) reply = NULL;
if (!(cmd = qemuMonitorJSONMakeCommand("blockdev-set-active",
"S:node-name", nodename,
"b:active", active,
NULL)))
return -1;
if (qemuMonitorJSONCommand(mon, cmd, &reply) < 0)
return -1;
return qemuMonitorJSONCheckError(cmd, reply);
}

View File

@ -817,3 +817,8 @@ qemuMonitorJSONSnapshotDelete(qemuMonitor *mon,
const char *jobname,
const char *snapshotname,
const char **disks);
int
qemuMonitorJSONBlockdevSetActive(qemuMonitor *mon,
const char *nodename,
bool active);

View File

@ -1249,6 +1249,36 @@ testQemuMonitorJSONqemuMonitorJSONSnapshot(const void *opaque)
}
static int
testQemuMonitorJSONqemuMonitorJSONBlockdevSetActive(const void *opaque)
{
const testGenericData *data = opaque;
virDomainXMLOption *xmlopt = data->xmlopt;
g_autoptr(qemuMonitorTest) test = NULL;
if (!(test = qemuMonitorTestNewSchema(xmlopt, data->schema)))
return -1;
if (qemuMonitorTestAddItem(test, "blockdev-set-active",
"{\"return\":{}}") < 0)
return -1;
if (qemuMonitorTestAddItem(test, "blockdev-set-active",
"{\"return\":{}}") < 0)
return -1;
if (qemuMonitorJSONBlockdevSetActive(qemuMonitorTestGetMonitor(test),
NULL, true) < 0)
return -1;
if (qemuMonitorJSONBlockdevSetActive(qemuMonitorTestGetMonitor(test),
"testnode", false) < 0)
return -1;
return 0;
}
static bool
testQemuMonitorJSONqemuMonitorJSONQueryCPUsEqual(struct qemuMonitorQueryCpusEntry *a,
struct qemuMonitorQueryCpusEntry *b)
@ -2989,6 +3019,7 @@ mymain(void)
DO_TEST(qemuMonitorJSONSendKeyHoldtime);
DO_TEST(qemuMonitorJSONNBDServerStart);
DO_TEST(qemuMonitorJSONSnapshot);
DO_TEST(qemuMonitorJSONBlockdevSetActive);
DO_TEST_CPU_DATA("host");
DO_TEST_CPU_DATA("full");