]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Fix up comments for isEncrypted, isSecure, domainIsActive,
authorChris Lalancette <clalance@redhat.com>
Tue, 23 Mar 2010 18:00:38 +0000 (14:00 -0400)
committerChris Lalancette <clalance@redhat.com>
Tue, 6 Apr 2010 13:51:24 +0000 (09:51 -0400)
and domainIsPersistent.

Signed-off-by: Chris Lalancette <clalance@redhat.com>
src/lxc/lxc_driver.c
src/opennebula/one_driver.c
src/phyp/phyp_driver.c
src/qemu/qemu_driver.c
src/uml/uml_driver.c
src/vbox/vbox_tmpl.c
src/xen/xen_driver.c

index f4d4bda4c223592a3b7c82a028efe188c8a66b15..2851a2a8ef722d625a2783142ac4037a2239222c 100644 (file)
@@ -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 */
index e5563c69885667e48c6ada32f06f72c5f89bedd0..cdd61eb5a85a7fe847c2a159e7246b90c35d148c 100644 (file)
@@ -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 */
index 28e17ffdab4b2d98c78a96db22eff49210dcade8..b712d0a7ce27379aad104da69627816c8772cfbf 100644 (file)
@@ -1640,8 +1640,8 @@ virDriver phypDriver = {
     NULL,                       /* nodeDeviceReAttach */
     NULL,                       /* nodeDeviceReset */
     NULL,                       /* domainMigratePrepareTunnel */
-    phypIsEncrypted,
-    phypIsSecure,
+    phypIsEncrypted,            /* isEncrypted */
+    phypIsSecure,               /* isSecure */
     NULL,                       /* domainIsActive */
     NULL,                       /* domainIsPersistent */
     NULL,                       /* cpuCompare */
index f274f8175b409946ca27eaab5daf8ce61bbe0423..ce43fd387a9ffdd387685f6cf1435c2787b5a0dc 100644 (file)
@@ -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 */
index 6c71336736dafb9e2b9bbe52aba46bb6c0aa86d4..a251e894b8abdef46eb68016696b4e46fba5bb71 100644 (file)
@@ -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 */
index 0f4976751dbc9751fedbae2cc76b22f1b2f6fb5a..594db72c1666679c0f30d848855fd9725abdef97 100644 (file)
@@ -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 */
index 1e1a920e0f34a258e2cd08e62a047c81812949ae..68b627ae3ba76197ff918f35c7b82754ccf65566 100644 (file)
@@ -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 */