mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
Introduce virDomainDetachDeviceAlias API
When detaching a device it can be uniquely identified by its alias. Instead of misusing virDomainDetachDeviceFlags which has the same signature introduce new function. Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
4804a4db33
commit
007f500a23
@ -2022,6 +2022,9 @@ int virDomainDetachDeviceFlags(virDomainPtr domain,
|
||||
int virDomainUpdateDeviceFlags(virDomainPtr domain,
|
||||
const char *xml, unsigned int flags);
|
||||
|
||||
int virDomainDetachDeviceAlias(virDomainPtr domain,
|
||||
const char *alias, unsigned int flags);
|
||||
|
||||
typedef struct _virDomainStatsRecord virDomainStatsRecord;
|
||||
typedef virDomainStatsRecord *virDomainStatsRecordPtr;
|
||||
struct _virDomainStatsRecord {
|
||||
|
@ -441,6 +441,11 @@ typedef int
|
||||
const char *xml,
|
||||
unsigned int flags);
|
||||
|
||||
typedef int
|
||||
(*virDrvDomainDetachDeviceAlias)(virDomainPtr domain,
|
||||
const char *alias,
|
||||
unsigned int flags);
|
||||
|
||||
typedef int
|
||||
(*virDrvDomainGetAutostart)(virDomainPtr domain,
|
||||
int *autostart);
|
||||
@ -1392,6 +1397,7 @@ struct _virHypervisorDriver {
|
||||
virDrvDomainDetachDevice domainDetachDevice;
|
||||
virDrvDomainDetachDeviceFlags domainDetachDeviceFlags;
|
||||
virDrvDomainUpdateDeviceFlags domainUpdateDeviceFlags;
|
||||
virDrvDomainDetachDeviceAlias domainDetachDeviceAlias;
|
||||
virDrvDomainGetAutostart domainGetAutostart;
|
||||
virDrvDomainSetAutostart domainSetAutostart;
|
||||
virDrvDomainGetSchedulerType domainGetSchedulerType;
|
||||
|
@ -8349,6 +8349,59 @@ virDomainUpdateDeviceFlags(virDomainPtr domain,
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* virDomainDetachDeviceAlias:
|
||||
* @domain: pointer to a domain object
|
||||
* @alias: device alias
|
||||
* @flags: bitwise-OR of virDomainDeviceModifyFlags
|
||||
*
|
||||
* Detach a virtual device from a domain, using the alias to
|
||||
* specify the device. The value of @flags should be either
|
||||
* VIR_DOMAIN_AFFECT_CURRENT, or a bitwise-or of values from
|
||||
* VIR_DOMAIN_AFFECT_LIVE and VIR_DOMAIN_AFFECT_CURRENT, although
|
||||
* hypervisors vary in which flags are supported.
|
||||
*
|
||||
* In contrast to virDomainDetachDeviceFlags() this API is
|
||||
* asynchronous - it returns immediately after sending the detach
|
||||
* request to the hypervisor. It's caller's responsibility to
|
||||
* wait for VIR_DOMAIN_EVENT_ID_DEVICE_REMOVED event to signal
|
||||
* actual device removal.
|
||||
*
|
||||
* Returns 0 in case of success, -1 in case of failure.
|
||||
*/
|
||||
int
|
||||
virDomainDetachDeviceAlias(virDomainPtr domain,
|
||||
const char *alias,
|
||||
unsigned int flags)
|
||||
{
|
||||
virConnectPtr conn;
|
||||
|
||||
VIR_DOMAIN_DEBUG(domain, "alias=%s, flags=0x%x", alias, flags);
|
||||
|
||||
virResetLastError();
|
||||
|
||||
virCheckDomainReturn(domain, -1);
|
||||
conn = domain->conn;
|
||||
|
||||
virCheckNonNullArgGoto(alias, error);
|
||||
virCheckReadOnlyGoto(conn->flags, error);
|
||||
|
||||
if (conn->driver->domainDetachDeviceAlias) {
|
||||
int ret;
|
||||
ret = conn->driver->domainDetachDeviceAlias(domain, alias, flags);
|
||||
if (ret < 0)
|
||||
goto error;
|
||||
return ret;
|
||||
}
|
||||
|
||||
virReportUnsupportedError();
|
||||
|
||||
error:
|
||||
virDispatchError(domain->conn);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* virConnectDomainEventRegister:
|
||||
* @conn: pointer to the connection
|
||||
|
@ -785,4 +785,9 @@ LIBVIRT_4.1.0 {
|
||||
virStoragePoolLookupByTargetPath;
|
||||
} LIBVIRT_3.9.0;
|
||||
|
||||
LIBVIRT_4.4.0 {
|
||||
global:
|
||||
virDomainDetachDeviceAlias;
|
||||
} LIBVIRT_4.1.0;
|
||||
|
||||
# .... define new API here using predicted next version number ....
|
||||
|
Loading…
Reference in New Issue
Block a user