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:
parent
827fd459fa
commit
f4a7ad439e
@ -232,7 +232,7 @@ class OVSTunnelBridge(ovs_bridge.OVSAgentBridge,
|
|||||||
ofpp.NXActionRegMove(src_field='eth_src',
|
ofpp.NXActionRegMove(src_field='eth_src',
|
||||||
dst_field='eth_dst',
|
dst_field='eth_dst',
|
||||||
n_bits=48),
|
n_bits=48),
|
||||||
ofpp.OFPActionSetField(eth_src_nxm=mac),
|
ofpp.OFPActionSetField(eth_src=mac),
|
||||||
ofpp.OFPActionOutput(ofp.OFPP_IN_PORT, 0)]
|
ofpp.OFPActionOutput(ofp.OFPP_IN_PORT, 0)]
|
||||||
self.install_apply_actions(table_id=constants.ARP_RESPONDER,
|
self.install_apply_actions(table_id=constants.ARP_RESPONDER,
|
||||||
priority=1,
|
priority=1,
|
||||||
|
@ -405,7 +405,7 @@ class OVSTunnelBridgeTest(ovs_bridge_test_base.OVSBridgeTestBase,
|
|||||||
ofpp.NXActionRegMove(src_field='eth_src',
|
ofpp.NXActionRegMove(src_field='eth_src',
|
||||||
dst_field='eth_dst',
|
dst_field='eth_dst',
|
||||||
n_bits=48),
|
n_bits=48),
|
||||||
ofpp.OFPActionSetField(eth_src_nxm=mac),
|
ofpp.OFPActionSetField(eth_src=mac),
|
||||||
ofpp.OFPActionOutput(ofp.OFPP_IN_PORT, 0),
|
ofpp.OFPActionOutput(ofp.OFPP_IN_PORT, 0),
|
||||||
]),
|
]),
|
||||||
],
|
],
|
||||||
|
Loading…
Reference in New Issue
Block a user