app/simple_isolation: unbreak nx patch

Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
Isaku Yamahata 2012-04-04 18:37:43 +09:00 committed by FUJITA Tomonori
parent 1ce1db030c
commit a7b72545a8

@ -36,6 +36,7 @@ LOG = logging.getLogger('ryu.app.simple_isolation')
class SimpleIsolation(object):
def __init__(self, *_args, **kwargs):
super(SimpleIsolation, self).__init__()
self.nw = kwargs['network']
self.dpset = kwargs['dpset']
self.mac2port = mac_to_port.MacToPortTable()
@ -295,7 +296,7 @@ class SimpleIsolation(object):
return
for mac_ in self.mac2port.mac_list(datapath_id, port_no):
for dp in self.dpset.get_all():
for (_dpid, dp) in self.dpset.get_all():
if self.mac2port.port_get(dp.id, mac_) is None:
continue