diff options
author | Billy O'Mahony <billy.o.mahony@intel.com> | 2015-07-07 14:26:14 +0100 |
---|---|---|
committer | Maryam Tahhan <maryam.tahhan@intel.com> | 2015-07-27 16:24:32 +0000 |
commit | 204a30e7f8d2c7b51208767c715916729b6017b2 (patch) | |
tree | f62e0524a38e3c34dd25f66f4b0ede2b5f1a58b2 /src/ovs | |
parent | 071071fb199833debb64625e51a4fc612e83019f (diff) |
testcase: Add frame modification config
* Added a new standard set of flow table that defaults to routing phy1 to phy2
and vice-versa and allows frame modification and tuple matches to be added
independently of routing.
* Add a FrameMod testcase attribute - implement this for value 'vlan'
* With FrameMod == 'vlan' the reported tx_fps and rx_fps figures do not match
even for RFC2544 throughtput 0% packet loss - this is a pre-existing bug
and a fix will be done as a separate patch. The rx_fps figure is the
reliable figure.
JIRA: VSPERF-27
Change-Id: Idd137b7a101305e7aebb6fabdfb6a7a4dcf8661b
Signed-off-by: Billy O'Mahony<billy.o.mahony@intel.com>
Reviewed-by: Al Morton <acmorton@att.com>
Reviewed-by: Eugene Snider <Eugene.Snider@huawei.com>
Reviewed-by: Maryam Tahhan <maryam.tahhan@intel.com>
Reviewed-by: Gurpreet Singh <gurpreet.singh@spirent.com>
Reviewed-by: Tv Rao <tv.rao@freescale.com>
Diffstat (limited to 'src/ovs')
-rw-r--r-- | src/ovs/ofctl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ovs/ofctl.py b/src/ovs/ofctl.py index c6aaddc9..a2a15ce1 100644 --- a/src/ovs/ofctl.py +++ b/src/ovs/ofctl.py @@ -124,7 +124,7 @@ class OFBridge(OFBase): :return: None """ - cmd = ['sudo', _OVS_OFCTL_BIN, '--timeout', str(self.timeout)] + args + cmd = ['sudo', _OVS_OFCTL_BIN, '-O', 'OpenFlow13', '--timeout', str(self.timeout)] + args return tasks.run_task( cmd, self.logger, 'Running ovs-ofctl...', check_error) |