Change in vdsm[master]: net: include OVS Netinfo in netinfo/cache.py:_get()

2016-05-04 Thread automation
gerrit-hooks has posted comments on this change.

Change subject: net: include OVS Netinfo in netinfo/cache.py:_get()
..


Patch Set 3:

* #1195208::Update tracker: OK

-- 
To view, visit https://gerrit.ovirt.org/56980
To unsubscribe, visit https://gerrit.ovirt.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Ib823273a47c07b879591520237bfe122f9b9f1b5
Gerrit-PatchSet: 3
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Petr Horáček 
Gerrit-Reviewer: Dan Kenigsberg 
Gerrit-Reviewer: Edward Haas 
Gerrit-Reviewer: Jenkins CI
Gerrit-Reviewer: gerrit-hooks 
Gerrit-HasComments: No
___
vdsm-patches mailing list
vdsm-patches@lists.fedorahosted.org
https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches


Change in vdsm[master]: net: include OVS Netinfo in netinfo/cache.py:_get()

2016-05-04 Thread phoracek
Petr Horáček has abandoned this change.

Change subject: net: include OVS Netinfo in netinfo/cache.py:_get()
..


Abandoned

-- 
To view, visit https://gerrit.ovirt.org/56980
To unsubscribe, visit https://gerrit.ovirt.org/settings

Gerrit-MessageType: abandon
Gerrit-Change-Id: Ib823273a47c07b879591520237bfe122f9b9f1b5
Gerrit-PatchSet: 3
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Petr Horáček 
Gerrit-Reviewer: Dan Kenigsberg 
Gerrit-Reviewer: Edward Haas 
Gerrit-Reviewer: Jenkins CI
Gerrit-Reviewer: gerrit-hooks 
___
vdsm-patches mailing list
vdsm-patches@lists.fedorahosted.org
https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches


Change in vdsm[master]: net: include OVS Netinfo in netinfo/cache.py:_get()

2016-05-03 Thread automation
gerrit-hooks has posted comments on this change.

Change subject: net: include OVS Netinfo in netinfo/cache.py:_get()
..


Patch Set 3:

* #1195208::Update tracker: OK
* Check Bug-Url::OK
* Check Public Bug::#1195208::OK, public bug
* Check Product::#1195208::OK, Correct classification oVirt
* Check TM::SKIP, not in a monitored branch (ovirt-3.6)
* Check merged to previous::IGNORE, Not in stable branch (['ovirt-3.6'])

-- 
To view, visit https://gerrit.ovirt.org/56980
To unsubscribe, visit https://gerrit.ovirt.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Ib823273a47c07b879591520237bfe122f9b9f1b5
Gerrit-PatchSet: 3
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Petr Horáček 
Gerrit-Reviewer: Dan Kenigsberg 
Gerrit-Reviewer: Edward Haas 
Gerrit-Reviewer: Jenkins CI
Gerrit-Reviewer: gerrit-hooks 
Gerrit-HasComments: No
___
vdsm-patches mailing list
vdsm-patches@lists.fedorahosted.org
https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches


Change in vdsm[master]: net: include OVS Netinfo in netinfo/cache.py:_get()

2016-05-03 Thread automation
gerrit-hooks has posted comments on this change.

Change subject: net: include OVS Netinfo in netinfo/cache.py:_get()
..


Patch Set 2:

* #1195208::Update tracker: OK
* Check Bug-Url::OK
* Check Public Bug::#1195208::OK, public bug
* Check Product::#1195208::OK, Correct classification oVirt
* Check TM::SKIP, not in a monitored branch (ovirt-3.6)
* Check merged to previous::IGNORE, Not in stable branch (['ovirt-3.6'])

-- 
To view, visit https://gerrit.ovirt.org/56980
To unsubscribe, visit https://gerrit.ovirt.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Ib823273a47c07b879591520237bfe122f9b9f1b5
Gerrit-PatchSet: 2
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Petr Horáček 
Gerrit-Reviewer: Dan Kenigsberg 
Gerrit-Reviewer: Edward Haas 
Gerrit-Reviewer: Jenkins CI
Gerrit-Reviewer: gerrit-hooks 
Gerrit-HasComments: No
___
vdsm-patches mailing list
vdsm-patches@lists.fedorahosted.org
https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches


Change in vdsm[master]: net: include OVS Netinfo in netinfo/cache.py:_get()

2016-05-03 Thread phoracek
Petr Horáček has uploaded a new change for review.

Change subject: net: include OVS Netinfo in netinfo/cache.py:_get()
..

net: include OVS Netinfo in netinfo/cache.py:_get()

Change-Id: Ib823273a47c07b879591520237bfe122f9b9f1b5
Bug-Url: https://bugzilla.redhat.com/1195208
Signed-off-by: Petr Horáček 
---
M lib/vdsm/netinfo/cache.py
1 file changed, 7 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/80/56980/1

diff --git a/lib/vdsm/netinfo/cache.py b/lib/vdsm/netinfo/cache.py
index 7709317..6dc7ff3 100644
--- a/lib/vdsm/netinfo/cache.py
+++ b/lib/vdsm/netinfo/cache.py
@@ -26,6 +26,7 @@
 import six
 
 from vdsm.network.netconfpersistence import RunningConfig
+from vdsm.network.ovs.info import get_ovs_netinfo
 from ..ipwrapper import getLinks
 from ..netlink import link as nl_link
 
@@ -99,6 +100,12 @@
 report_network_qos(networking)
 networking['supportsIPv6'] = ipv6_supported()
 
+ovs_networks, ovs_bridges, ovs_vlans, ovs_bonds = get_ovs_netinfo()
+networking['networks'].update(ovs_networks)
+networking['bridges'].update(ovs_bridges)
+networking['vlans'].update(ovs_vlans)
+networking['bonds'].update(ovs_bonds)
+
 return networking
 
 


-- 
To view, visit https://gerrit.ovirt.org/56980
To unsubscribe, visit https://gerrit.ovirt.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib823273a47c07b879591520237bfe122f9b9f1b5
Gerrit-PatchSet: 1
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Petr Horáček 
___
vdsm-patches mailing list
vdsm-patches@lists.fedorahosted.org
https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches


Change in vdsm[master]: net: include OVS Netinfo in netinfo/cache.py:_get()

2016-05-03 Thread automation
gerrit-hooks has posted comments on this change.

Change subject: net: include OVS Netinfo in netinfo/cache.py:_get()
..


Patch Set 1:

* #1195208::Update tracker: OK
* Check Bug-Url::OK
* Check Public Bug::#1195208::OK, public bug
* Check Product::#1195208::OK, Correct classification oVirt
* Check TM::SKIP, not in a monitored branch (ovirt-3.6)
* Check merged to previous::IGNORE, Not in stable branch (['ovirt-3.6'])

-- 
To view, visit https://gerrit.ovirt.org/56980
To unsubscribe, visit https://gerrit.ovirt.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Ib823273a47c07b879591520237bfe122f9b9f1b5
Gerrit-PatchSet: 1
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Petr Horáček 
Gerrit-Reviewer: Dan Kenigsberg 
Gerrit-Reviewer: Edward Haas 
Gerrit-Reviewer: gerrit-hooks 
Gerrit-HasComments: No
___
vdsm-patches mailing list
vdsm-patches@lists.fedorahosted.org
https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches