-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: flowtable direction logic and other fixes #382
Merged
Conversation
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
It impossible to change interrupt mode of process node. Instead for tests use `use-private-rx-mqs` parameter for session node which should enable interrupt mode for session processing. Which is only pooling node we using. In current upg version this is broken due to bug which is fixed in vpp commit 5f30518 and included in v23.06. For flowtable timer wheel expiration we using separate process which sends interrupts to worker input nodes to trigger expiration.
Use inline func with assert instead of macro, so in next change we could get rid of xoring of fields. Also group flow fields for one direction in struct, to improve cache hit and readability
mogaika
changed the title
Multiple small fixes and readability improvements
Rework flowtable direction logic and other fixes
Feb 2, 2024
mogaika
commented
Feb 2, 2024
demo-exe
approved these changes
Feb 3, 2024
maybe name to 'refactor: flowtable direction logic and other fixes' |
mogaika
changed the title
Rework flowtable direction logic and other fixes
refactor: flowtable direction logic and other fixes
Feb 4, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Functional change:
Changes related to flowtable, but not affecting behavior:
upf_buffer_opaque_t
in own header so we could solve dependency and use it in flowtable code.Unrelated changes:
"upf-ipX-proxy-server-no-conn-output"
nodes since they make no sense in newer VPP versions (as was mentioned in comments), and also there was a bug wheredirection
variable have been incorrectly reused between packets in one vector.