[libvirt] [PATCH v3 07/16] interface: Use virObjectLookupKeys*Active

John Ferlan jferlan at redhat.com
Thu Jun 22 14:02:37 UTC 2017


Use the @active definition of the virObjectLookupKeys

Signed-off-by: John Ferlan <jferlan at redhat.com>
---
 src/conf/virinterfaceobj.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/conf/virinterfaceobj.c b/src/conf/virinterfaceobj.c
index 243ff33..69a716b 100644
--- a/src/conf/virinterfaceobj.c
+++ b/src/conf/virinterfaceobj.c
@@ -35,7 +35,6 @@ VIR_LOG_INIT("conf.virinterfaceobj");
 struct _virInterfaceObj {
     virObjectLookupKeys parent;
 
-    bool active;           /* true if interface is active (up) */
     virInterfaceDefPtr def; /* The interface definition */
 };
 
@@ -113,7 +112,7 @@ virInterfaceObjGetDef(virInterfaceObjPtr obj)
 bool
 virInterfaceObjIsActive(virInterfaceObjPtr obj)
 {
-    return obj->active;
+    return virObjectLookupKeysIsActive(obj);
 }
 
 
@@ -121,7 +120,7 @@ void
 virInterfaceObjSetActive(virInterfaceObjPtr obj,
                          bool active)
 {
-    obj->active = active;
+    virObjectLookupKeysSetActive(obj, active);
 }
 
 
-- 
2.9.4




More information about the libvir-list mailing list