commit 5b730b9c94e3b5ab27143fe8a44981d107b8ee0d Author: Zuul Date: Wed Oct 7 05:17:00 2020 +0000 Update git submodules * Update neutron from branch 'master' - Merge "Local mac direct flow for non-openflow firewall" - Local mac direct flow for non-openflow firewall When there is no openflow firewall, aka the ovs agent security group is disabled or Noop/HybridIptable, this patch will introduce a different ingress pipeline for bridge ports which will avoid ingress flood: (1) table=0, in_port=patch_bridge,dl_vlan=physical_vlan action=mod_vlan:local_vlan,goto:60 (original) (2) table=60, in_port=patch_bridge action=goto:61 (new) (3) table=61, dl_dst=local_port_mac,dl_vlan=local_vlan, action=strip_vlan,output: (changes) And changes the local ports pipeline: (1) table=0, in_port=local_ofport action=goto:25 (original) (2) table=25, in_port=local_ofport,dl_src=local_port_mac action=goto:60 (original) (3) table=60, in_port=local_ofport,dl_src=local_port_mac action=local_vlan->reg6,goto:61 (changes) (4) table=61, dl_dst=local_port_mac,reg6=local_vlan, action=output: (changes) Closes-Bug: #1884708 Closes-Bug: #1881070 Related-Bug: #1732067 Related-Bug: #1866445 Related-Bug: #1883321 Change-Id: Iecf9cffaf02616342f1727ad7db85545d8adbec2 diff --git a/neutron b/neutron index 05137fb..492c7a3 160000 --- a/neutron +++ b/neutron @@ -1 +1 @@ -Subproject commit 05137fbe4e137bdaf6248900fda3e1dbb519f870 +Subproject commit 492c7a3b3339d78121f18ba35fa9896b0e4b8727