mirror of https://gitee.com/openkylin/libvirt.git
Fix up comments for isEncrypted, isSecure, domainIsActive,
and domainIsPersistent. Signed-off-by: Chris Lalancette <clalance@redhat.com>
This commit is contained in:
parent
6449cb9014
commit
6f17a5d166
|
@ -2527,10 +2527,10 @@ static virDriver lxcDriver = {
|
|||
NULL, /* nodeDeviceReAttach */
|
||||
NULL, /* nodeDeviceReset */
|
||||
NULL, /* domainMigratePrepareTunnel */
|
||||
lxcIsEncrypted,
|
||||
lxcIsSecure,
|
||||
lxcDomainIsActive,
|
||||
lxcDomainIsPersistent,
|
||||
lxcIsEncrypted, /* isEncrypted */
|
||||
lxcIsSecure, /* isSecure */
|
||||
lxcDomainIsActive, /* domainIsActive */
|
||||
lxcDomainIsPersistent, /* domainIsPersistent */
|
||||
NULL, /* cpuCompare */
|
||||
NULL, /* cpuBaseline */
|
||||
NULL, /* domainGetJobInfo */
|
||||
|
|
|
@ -781,8 +781,8 @@ static virDriver oneDriver = {
|
|||
NULL, /* nodeDeviceReAttach; */
|
||||
NULL, /* nodeDeviceReset; */
|
||||
NULL, /* domainMigratePrepareTunnel */
|
||||
oneIsEncrypted,
|
||||
oneIsSecure,
|
||||
oneIsEncrypted, /* isEncrypted */
|
||||
oneIsSecure, /* isSecure */
|
||||
NULL, /* domainIsActive */
|
||||
NULL, /* domainIsPersistent */
|
||||
NULL, /* cpuCompare */
|
||||
|
|
|
@ -1640,8 +1640,8 @@ virDriver phypDriver = {
|
|||
NULL, /* nodeDeviceReAttach */
|
||||
NULL, /* nodeDeviceReset */
|
||||
NULL, /* domainMigratePrepareTunnel */
|
||||
phypIsEncrypted,
|
||||
phypIsSecure,
|
||||
phypIsEncrypted, /* isEncrypted */
|
||||
phypIsSecure, /* isSecure */
|
||||
NULL, /* domainIsActive */
|
||||
NULL, /* domainIsPersistent */
|
||||
NULL, /* cpuCompare */
|
||||
|
|
|
@ -11325,10 +11325,10 @@ static virDriver qemuDriver = {
|
|||
qemudNodeDeviceReAttach, /* nodeDeviceReAttach */
|
||||
qemudNodeDeviceReset, /* nodeDeviceReset */
|
||||
qemudDomainMigratePrepareTunnel, /* domainMigratePrepareTunnel */
|
||||
qemuIsEncrypted,
|
||||
qemuIsSecure,
|
||||
qemuDomainIsActive,
|
||||
qemuDomainIsPersistent,
|
||||
qemuIsEncrypted, /* isEncrypted */
|
||||
qemuIsSecure, /* isSecure */
|
||||
qemuDomainIsActive, /* domainIsActive */
|
||||
qemuDomainIsPersistent, /* domainIsPersistent */
|
||||
qemuCPUCompare, /* cpuCompare */
|
||||
qemuCPUBaseline, /* cpuBaseline */
|
||||
qemuDomainGetJobInfo, /* domainGetJobInfo */
|
||||
|
|
|
@ -1921,10 +1921,10 @@ static virDriver umlDriver = {
|
|||
NULL, /* nodeDeviceReAttach */
|
||||
NULL, /* nodeDeviceReset */
|
||||
NULL, /* domainMigratePrepareTunnel */
|
||||
umlIsEncrypted,
|
||||
umlIsSecure,
|
||||
umlDomainIsActive,
|
||||
umlDomainIsPersistent,
|
||||
umlIsEncrypted, /* isEncrypted */
|
||||
umlIsSecure, /* isSecure */
|
||||
umlDomainIsActive, /* domainIsActive */
|
||||
umlDomainIsPersistent, /* domainIsPersistent */
|
||||
NULL, /* cpuCompare */
|
||||
NULL, /* cpuBaseline */
|
||||
NULL, /* domainGetJobInfo */
|
||||
|
|
|
@ -8135,10 +8135,10 @@ virDriver NAME(Driver) = {
|
|||
NULL, /* nodeDeviceReAttach */
|
||||
NULL, /* nodeDeviceReset */
|
||||
NULL, /* domainMigratePrepareTunnel */
|
||||
vboxIsEncrypted,
|
||||
vboxIsSecure,
|
||||
vboxDomainIsActive,
|
||||
vboxDomainIsPersistent,
|
||||
vboxIsEncrypted, /* isEncrypted */
|
||||
vboxIsSecure, /* isSecure */
|
||||
vboxDomainIsActive, /* domainIsActive */
|
||||
vboxDomainIsPersistent, /* domainIsPersistent */
|
||||
NULL, /* cpuCompare */
|
||||
NULL, /* cpuBaseline */
|
||||
NULL, /* domainGetJobInfo */
|
||||
|
|
|
@ -1969,10 +1969,10 @@ static virDriver xenUnifiedDriver = {
|
|||
xenUnifiedNodeDeviceReAttach, /* nodeDeviceReAttach */
|
||||
xenUnifiedNodeDeviceReset, /* nodeDeviceReset */
|
||||
NULL, /* domainMigratePrepareTunnel */
|
||||
xenUnifiedIsEncrypted,
|
||||
xenUnifiedIsSecure,
|
||||
xenUnifiedDomainIsActive,
|
||||
xenUnifiedDomainisPersistent,
|
||||
xenUnifiedIsEncrypted, /* isEncrypted */
|
||||
xenUnifiedIsSecure, /* isSecure */
|
||||
xenUnifiedDomainIsActive, /* domainIsActive */
|
||||
xenUnifiedDomainisPersistent, /* domainIsPersistent */
|
||||
NULL, /* cpuCompare */
|
||||
NULL, /* cpuBaseline */
|
||||
NULL, /* domainGetJobInfo */
|
||||
|
|
Loading…
Reference in New Issue