forked from openvswitch/ovs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
recirculation: Do not drop packet when there is no match from
internal table. In current recirculation implementation, the flow misses (with 'recirc_id' set) are always looked up on the receiving bridge's internal flow table. However, the bond port may actually reside on another bridge which gets connected to the receiving bridge via patch port. Since the recirculation rules are pushed to the other bridge's internal table, the flow lookup on the receiving bridge will match nothing but the drop rule, causing unexpected packet drops. This commit fixes the above bug via keeping lookup the misses (with 'recirc_id' set) in default table (table 0) and processing it until reaching the bridge that owns the bond port. Then, the misses can hit the post recirculation flows as expected. VMware-BZ: 1362178 Reported-by: Ansis Atteka <[email protected]> Signed-off-by: Alex Wang <[email protected]> Acked-by: Andy Zhou <[email protected]>
- Loading branch information
Showing
3 changed files
with
29 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters