From fa24f22d4df53425abc4428944ed63b8becfa454 Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Tue, 31 Jul 2012 17:23:08 -0700 Subject: [PATCH] Re-enable slicing in UserSwitch since it's fixed with newer kernels. --- mininet/node.py | 1 - 1 file changed, 1 deletion(-) diff --git a/mininet/node.py b/mininet/node.py index 4ed4c92..b441d96 100644 --- a/mininet/node.py +++ b/mininet/node.py @@ -817,7 +817,6 @@ class UserSwitch( Switch ): intfs = [ str( i ) for i in self.intfList() if not i.IP() ] self.cmd( 'ofdatapath -i ' + ','.join( intfs ) + ' punix:/tmp/' + self.name + ' -d ' + self.dpid + - ' --no-slicing ' + ' 1> ' + ofdlog + ' 2> ' + ofdlog + ' &' ) self.cmd( 'ofprotocol unix:/tmp/' + self.name + ' tcp:%s:%d' % ( controller.IP(), controller.port ) +