cbb949379c
In RULES_INGRESS_TABLE table 82 there is a rule for allow established and
related connections. The current rule sends the packet directly to the dest
port without doing a mac learning. This is causing ovs to age out the dest mac
of the remote VM and causing the rule to be changed in flood rule. For the normal
case it fine as they try to avoid high cpu. ovs hardware offload reduce cpu usage
by moving some of the packet processing to nic and flood rule is not offloaded,
therefore it prefre to use the NORMAL action to avoid the flood rule.
We also keep the same logic as today when using explicitly_egress_direct=True
which avoid NORMAL action in the entire pipeline.
Closes-Bug: #1897637
Change-Id: I9b611d62be5d0529e8b35e3d8280baa5be54bc2b
(cherry picked from commit 8fc80b7e13
)
10 lines
472 B
YAML
10 lines
472 B
YAML
---
|
|
fixes:
|
|
- |
|
|
Fixed MAC learning issue when ovs offload enabled. OVS firewall reduce
|
|
the usage of normal actions to reduce cpu utilization. This causing flood
|
|
rule because there is no MAC learning on ingress traffic. While this ok
|
|
for none offload case, when using ovs offload flood rule is not
|
|
offloaded. This fix the MAC learning in the offload, so we avoid flood
|
|
rule.
|
|
`#1897637 <https://bugs.launchpad.net/neutron/+bug/1897637>`_. |