Fix useless use of _nxm variant in an OVS field name

Fix useless use of _nxm variant in an OVS field name.

This was supposed to be part of I9a095add42ba5799bd81887f1cbe5507ab9ba48c,
but wasn't because I messed up.

Change-Id: I7f708289ae8f6776a7a54bdd26a19a14b69260bd
This commit is contained in:
Thomas Morin 2016-09-16 14:12:20 +02:00
parent 827fd459fa
commit f4a7ad439e
2 changed files with 2 additions and 2 deletions

View File

@ -232,7 +232,7 @@ class OVSTunnelBridge(ovs_bridge.OVSAgentBridge,
ofpp.NXActionRegMove(src_field='eth_src',
dst_field='eth_dst',
n_bits=48),
ofpp.OFPActionSetField(eth_src_nxm=mac),
ofpp.OFPActionSetField(eth_src=mac),
ofpp.OFPActionOutput(ofp.OFPP_IN_PORT, 0)]
self.install_apply_actions(table_id=constants.ARP_RESPONDER,
priority=1,

View File

@ -405,7 +405,7 @@ class OVSTunnelBridgeTest(ovs_bridge_test_base.OVSBridgeTestBase,
ofpp.NXActionRegMove(src_field='eth_src',
dst_field='eth_dst',
n_bits=48),
ofpp.OFPActionSetField(eth_src_nxm=mac),
ofpp.OFPActionSetField(eth_src=mac),
ofpp.OFPActionOutput(ofp.OFPP_IN_PORT, 0),
]),
],