The 'reconnectBlockjobs' member of the _qemuDomainObjPrivate
struct is basically unused after v8.7.0-rc1~110. It's not even
formatted into the status XML, just parsed. This makes needless
noise. Just drop the member.
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
priv->rememberOwner = false;
- priv->reconnectBlockjobs = VIR_TRISTATE_BOOL_ABSENT;
priv->allowReboot = VIR_TRISTATE_BOOL_ABSENT;
g_clear_pointer(&priv->migrationCaps, virBitmapFree);
{
g_autofree xmlNodePtr *nodes = NULL;
ssize_t nnodes = 0;
- g_autofree char *active = NULL;
- int tmp;
size_t i;
- if ((active = virXPathString("string(./blockjobs/@active)", ctxt)) &&
- (tmp = virTristateBoolTypeFromString(active)) > 0)
- priv->reconnectBlockjobs = tmp;
-
if ((nnodes = virXPathNodeSet("./blockjobs/blockjob", ctxt, &nodes)) < 0)
return -1;
/* If true virtlogd is used as stdio handler for character devices. */
bool chardevStdioLogd;
- /* Tracks blockjob state for vm. Valid only while reconnecting to qemu. */
- virTristateBool reconnectBlockjobs;
-
/* Migration capabilities. Rechecked on reconnect, not to be saved in
* private XML. */
virBitmap *migrationCaps;