-
Notifications
You must be signed in to change notification settings - Fork 332
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix ingress thread deadlock for resubmit packets
Resubmit packets were written to the input_buffer with a blocking call by the ingress thread. Since the ingress thread is also in charge of draining the input_buffer, this could have lead to a deadlock. Resubmit packets can now be dropped if the buffer is full. To limit the number of resubmit packets being lost, we place them is a higher priority queue than "normal" packets. Fixes #729
- Loading branch information
1 parent
ca27b9f
commit e373de4
Showing
3 changed files
with
111 additions
and
12 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